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:
7a03776bc8
This commit is contained in:
Michael Stokoe
2019-12-18 15:38:03 +00:00
committed by Taylor Otwell
parent 89e83915e9
commit 17f0ff2205

View File

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