env('LOG_CHANNEL', 'stack'), 'deprecations' => [ 'channel' => env('LOG_DEPRECATIONS_CHANNEL', 'null'), 'trace' => false, ], 'channels' => [ 'stack' => [ 'driver' => 'stack', 'channels' => ['single'], 'ignore_exceptions' => false, ], 'single' => [ 'driver' => 'single', 'path' => storage_path('logs/laravel.log'), 'level' => env('LOG_LEVEL', 'error'), ], 'null' => [ 'driver' => 'monolog', 'handler' => StreamHandler::class, 'with' => [ 'stream' => '/dev/null', 'level' => Level::Debug, ], ], ], ];