mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2025-12-15 19:09:50 +00:00
Update config for logging in Docker.
This commit is contained in:
@@ -32,8 +32,6 @@ return [
|
||||
'fallback_locale' => 'en_US',
|
||||
'key' => env('APP_KEY'),
|
||||
'cipher' => 'AES-256-CBC',
|
||||
'log' => envNonEmpty('APP_LOG', 'errorlog'),
|
||||
'log_level' => envNonEmpty('APP_LOG_LEVEL', 'info'),
|
||||
'providers' => [
|
||||
|
||||
/*
|
||||
|
||||
@@ -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' => [
|
||||
|
||||
Reference in New Issue
Block a user