Laravel - Configuration and Environment
Given this logging config snippet, what will be the output when logging an error?
'channels' => [ 'stack' => [ 'driver' => 'stack', 'channels' => ['single', 'slack']], 'single' => [ 'driver' => 'single', 'path' => storage_path('logs/laravel.log'), 'level' => 'debug'], 'slack' => [ 'driver' => 'slack', 'url' => env('LOG_SLACK_WEBHOOK_URL'), 'level' => 'error']]