Skip to content

Commit

Permalink
Updated config/logging.php (laravel#5179)
Browse files Browse the repository at this point in the history
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
  • Loading branch information
Michael-Stokoe authored and taylorotwell committed Dec 18, 2019
1 parent 89e8391 commit 17f0ff2
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions config/logging.php
Original file line number Diff line number Diff line change
Expand Up @@ -95,6 +95,10 @@
'driver' => 'monolog',
'handler' => NullHandler::class,
],

'emergency' => [
'path' => storage_path('logs/laravel.log'),
],
],

];

0 comments on commit 17f0ff2

Please sign in to comment.