// one of the channels defined in the "channels" configuration array.
'default' => env('LOG_CHANNEL', 'single'),
+ // Deprecations Log Channel
+ // This option controls the log channel that should be used to log warnings
+ // regarding deprecated PHP and library features. This allows you to get
+ // your application ready for upcoming major versions of dependencies.
+ 'deprecations' => [
+ 'channel' => 'null',
+ 'trace' => false,
+ ],
+
// Log Channels
// Here you may configure the log channels for your application. Out of
// the box, Laravel uses the Monolog PHP logging library. This gives