mirror of
https://github.com/snipe/snipe-it.git
synced 2025-03-05 20:52:15 -08:00
Add APP_LOG_LEVEL to new logging config
This commit is contained in:
parent
e443a576f7
commit
a483e9365b
|
@ -103,6 +103,7 @@ LOGIN_LOCKOUT_DURATION=60
|
||||||
# --------------------------------------------
|
# --------------------------------------------
|
||||||
APP_LOG=single
|
APP_LOG=single
|
||||||
APP_LOG_MAX_FILES=10
|
APP_LOG_MAX_FILES=10
|
||||||
|
APP_LOG_LEVEL=debug
|
||||||
FILESYSTEM_DISK=local
|
FILESYSTEM_DISK=local
|
||||||
APP_TRUSTED_PROXIES=192.168.1.1,10.0.0.1
|
APP_TRUSTED_PROXIES=192.168.1.1,10.0.0.1
|
||||||
ALLOW_IFRAMING=false
|
ALLOW_IFRAMING=false
|
||||||
|
|
|
@ -41,7 +41,7 @@ return [
|
||||||
'single' => [
|
'single' => [
|
||||||
'driver' => 'single',
|
'driver' => 'single',
|
||||||
'path' => storage_path('logs/laravel.log'),
|
'path' => storage_path('logs/laravel.log'),
|
||||||
'level' => 'debug',
|
'level' => env('APP_LOG_LEVEL', 'error'),
|
||||||
],
|
],
|
||||||
|
|
||||||
'daily' => [
|
'daily' => [
|
||||||
|
|
Loading…
Reference in a new issue