diff --git a/config/logging.php b/config/logging.php index 37482f9..601d9c0 100644 --- a/config/logging.php +++ b/config/logging.php @@ -51,7 +51,13 @@ return [ */ 'channels' => [ - + 'mailstats' => [ + 'driver' => 'daily', + 'path' => storage_path('logs/mailstats.log'), + 'level' => 'debug', + 'days' => 14, + ], + 'stack' => [ 'driver' => 'stack', 'channels' => explode(',', (string) env('LOG_STACK', 'single')), @@ -126,15 +132,5 @@ return [ 'emergency' => [ 'path' => storage_path('logs/laravel.log'), ], - ], - - - 'mailstats' => [ - 'driver' => 'daily', - 'path' => storage_path('logs/mailstats.log'), - 'level' => 'debug', - 'days' => 14, - ], - ];