diff --git a/config/logging.php b/config/logging.php index fe9d916b1..68c916474 100644 --- a/config/logging.php +++ b/config/logging.php @@ -53,7 +53,7 @@ return [ 'channels' => [ 'stack' => [ 'driver' => 'stack', - 'channels' => explode(',', (string) env('LOG_STACK', 'single')), + 'channels' => explode(',', (string) env('LOG_STACK', 'stderr,daily')), 'ignore_exceptions' => false, ], @@ -67,14 +67,14 @@ return [ 'daily' => [ 'driver' => 'daily', 'path' => storage_path('logs/laravel.log'), - 'level' => env('LOG_LEVEL', 'debug'), - 'days' => env('LOG_DAILY_DAYS', 14), + 'level' => env('LOG_LEVEL', 'warning'), + 'days' => env('LOG_DAILY_DAYS', 10), 'replace_placeholders' => true, ], 'stderr' => [ 'driver' => 'monolog', - 'level' => env('LOG_LEVEL', 'debug'), + 'level' => env('LOG_LEVEL', 'warning'), 'handler' => StreamHandler::class, 'handler_with' => [ 'stream' => 'php://stderr',