f26f3f0919
- add cron job for deleting log file daily - change cron job for deleting expired cache files (without logging)
44 lines
776 B
PHP
44 lines
776 B
PHP
<?php
|
|
|
|
namespace App\Console\Commands\Log;
|
|
|
|
use Illuminate\Console\Command;
|
|
|
|
class ClearLogFile extends Command
|
|
{
|
|
/**
|
|
* The name and signature of the console command.
|
|
*
|
|
* @var string
|
|
*/
|
|
protected $signature = 'log:clear';
|
|
|
|
/**
|
|
* The console command description.
|
|
*
|
|
* @var string
|
|
*/
|
|
protected $description = 'Clear Laravel log';
|
|
|
|
/**
|
|
* Create a new command instance.
|
|
*
|
|
* @return void
|
|
*/
|
|
public function __construct()
|
|
{
|
|
parent::__construct();
|
|
}
|
|
|
|
/**
|
|
* Execute the console command.
|
|
*
|
|
* @return mixed
|
|
*/
|
|
public function handle()
|
|
{
|
|
exec('echo "" > ' . storage_path('logs/laravel.log'));
|
|
$this->info('Logs have been cleared');
|
|
}
|
|
}
|