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:
parent
89e83915e9
commit
17f0ff2205
|
@ -95,6 +95,10 @@
|
||||||
'driver' => 'monolog',
|
'driver' => 'monolog',
|
||||||
'handler' => NullHandler::class,
|
'handler' => NullHandler::class,
|
||||||
],
|
],
|
||||||
|
|
||||||
|
'emergency' => [
|
||||||
|
'path' => storage_path('logs/laravel.log'),
|
||||||
|
],
|
||||||
],
|
],
|
||||||
|
|
||||||
];
|
];
|
||||||
|
|
Loading…
Reference in New Issue