- add cron rejecting dataset
- add cron job for deleting log file daily - change cron job for deleting expired cache files (without logging)
This commit is contained in:
parent
e89df8ec2a
commit
f26f3f0919
43
app/Console/Commands/Log/ClearLogFile.php
Normal file
43
app/Console/Commands/Log/ClearLogFile.php
Normal file
|
@ -0,0 +1,43 @@
|
|||
<?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');
|
||||
}
|
||||
}
|
|
@ -15,6 +15,7 @@ class Kernel extends ConsoleKernel
|
|||
'App\Console\Commands\Inspire',
|
||||
'App\Console\Commands\DatasetState',
|
||||
'App\Console\Commands\SolrIndexBuilder',
|
||||
'App\Console\Commands\Log\ClearLogFile'
|
||||
];
|
||||
|
||||
/**
|
||||
|
@ -30,12 +31,17 @@ class Kernel extends ConsoleKernel
|
|||
// ->withoutOverlapping()
|
||||
// ->appendOutputTo(storage_path('logs/inspire.log'));
|
||||
|
||||
// $schedule->command('state:dataset');
|
||||
// // ->appendOutputTo(storage_path('logs/inspire.log'));
|
||||
$schedule->command('log:clear')
|
||||
->daily()
|
||||
->withoutOverlapping();
|
||||
|
||||
$schedule->command('state:dataset')
|
||||
->daily()
|
||||
->withoutOverlapping();
|
||||
|
||||
$schedule->command('cache:clear-expired')
|
||||
->twiceDaily(1, 16)
|
||||
->appendOutputTo(storage_path('logs/cacheClear.log'));
|
||||
->twiceDaily(1, 16);
|
||||
//->appendOutputTo(storage_path('logs/cacheClear.log'));
|
||||
}
|
||||
|
||||
/**
|
||||
|
|
Loading…
Reference in New Issue
Block a user