diff --git a/config/logging.php b/config/logging.php index 86d013f..0e98c24 100644 --- a/config/logging.php +++ b/config/logging.php @@ -59,13 +59,13 @@ return [ 'single' => [ 'driver' => 'single', - 'path' => storage_path('logs/laravel.log'), + 'path' => storage_path('logs/laravel/'.date('Y/m/d').'.log'), 'level' => env('LOG_LEVEL', 'debug'), ], 'daily' => [ 'driver' => 'daily', - 'path' => storage_path('logs/laravel/'.date('Y/m/d').'.log'), + 'path' => storage_path('logs/laravel.log'), 'level' => env('LOG_LEVEL', 'debug'), 'days' => 14, ],