Browse Source

Updated config/logging.php (#5179)

This adds a default emergency logger path to the logging config file.
This change goes hand-in-hand with my changes found here:
https://github.com/Stokoe0990/framework/commit/7a03776bc860bde4cdc82e69ab133a755b66dd2d
Michael Stokoe 4 years ago
parent
commit
17f0ff2205
1 changed files with 4 additions and 0 deletions
  1. 4 0
      config/logging.php

+ 4 - 0
config/logging.php

@@ -95,6 +95,10 @@ return [
             'driver' => 'monolog',
             'handler' => NullHandler::class,
         ],
+
+        'emergency' => [
+            'path' => storage_path('logs/laravel.log'),
+        ],
     ],
 
 ];