How to Clear Log File using Command in Laravel?

By Hardik Savani November 5, 2023 Category : Laravel

I was working on my laravel project, i found one issue that too much load my log file when i open and i want to remove that data, i mean hang my system and must need to restart my system. I thought what will issue, but i got it because in my laravel.log(/storage/logs/laravel.log) file had big size of data and my text editor can't load and i want to clear that's way i can see other error.

I did search on google at last i found the solution using command, we have to just run command in out terminal or cmd and we can remove all data of log file. So let's fire bellow command and check.

You can use following two example command:

Example 1:

truncate -s 0 storage/logs/laravel.log

Example 2:

echo "" > storage/logs/laravel.log

I hope it can help you...

Tags :
Shares