Update config/logging with new options (bubble, permission and locking)

This commit is contained in:
DariusIII
2018-03-12 09:23:30 +01:00
parent 143108c8f2
commit b5a679ea46
3 changed files with 8 additions and 25 deletions
+6
View File
@@ -35,12 +35,18 @@ return [
'driver' => 'single',
'path' => storage_path('logs/laravel.log'),
'level' => 'debug',
'bubble' => true,
'permission' => 0775,
'locking' => false,
],
'daily' => [
'driver' => 'daily',
'path' => storage_path('logs/laravel.log'),
'level' => 'debug',
'days' => 7,
'bubble' => true,
'permission' => 0775,
'locking' => false,
],
'slack' => [
'driver' => 'slack',