]> BookStack Code Mirror - bookstack/blobdiff - app/Config/logging.php
Followed Laravel 9 update steps and file changes
[bookstack] / app / Config / logging.php
index 2b80147c8c7ef5a3d086eeafbce31abb1a4cff49..d49cd727d127c464c920c1bcf5175cb302b2feac 100644 (file)
@@ -21,6 +21,15 @@ return [
     // 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