Update config for logging in Docker.

This commit is contained in:
James Cole
2018-08-17 20:01:46 +02:00
parent f319005357
commit 379c540bd8
9 changed files with 75 additions and 69 deletions

View File

@@ -59,7 +59,12 @@ return [
'single' => [
'driver' => 'single',
'path' => storage_path('logs/laravel.log'),
'level' => 'debug',
'level' => envNonEmpty('APP_LOG_LEVEL', 'info'),
],
'stdout' => [
'driver' => 'single',
'path' => 'php://stdout',
'level' => envNonEmpty('APP_LOG_LEVEL', 'info'),
],
'daily' => [