diff --git a/.env.docker b/.env.docker index 9a68c1b253..8c47c801e2 100644 --- a/.env.docker +++ b/.env.docker @@ -155,7 +155,7 @@ RESET_PASSWORD_LINK_EXPIRES=900 # -------------------------------------------- # OPTIONAL: MISC # -------------------------------------------- -APP_LOG=stderr +LOG_CHANNEL=stderr LOG_MAX_DAYS=10 APP_LOCKED=false APP_CIPHER=AES-256-CBC diff --git a/.env.dusk.local b/.env.dusk.local index abf54cf77e..6f8c31de49 100644 --- a/.env.dusk.local +++ b/.env.dusk.local @@ -93,7 +93,7 @@ DISABLE_NOSAML_LOCAL_LOGIN=true # -------------------------------------------- # OPTIONAL: MISC # -------------------------------------------- -APP_LOG=single +LOG_CHANNEL=single LOG_LEVEL=debug LOG_CHANNEL=stack LOG_SLACK_WEBHOOK_URL=null diff --git a/.env.example b/.env.example index d7e022c79a..2d56fc5bbf 100644 --- a/.env.example +++ b/.env.example @@ -158,7 +158,7 @@ PASSWORD_RESET_MAX_ATTEMPTS_PER_MIN=50 # -------------------------------------------- # OPTIONAL: MISC # -------------------------------------------- -APP_LOG=single +LOG_CHANNEL=single LOG_MAX_DAYS=10 APP_LOCKED=false APP_CIPHER=AES-256-CBC diff --git a/.env.testing b/.env.testing index cf5e3cae72..eefb61c257 100644 --- a/.env.testing +++ b/.env.testing @@ -70,5 +70,5 @@ SECURE_COOKIES=false # -------------------------------------------- # OPTIONAL: APP LOG FORMAT # -------------------------------------------- -APP_LOG=single +LOG_CHANNEL=single LOG_LEVEL=debug diff --git a/.env.testing-ci b/.env.testing-ci index af698f8400..7b91a44b59 100644 --- a/.env.testing-ci +++ b/.env.testing-ci @@ -34,4 +34,4 @@ IMAGE_LIB=gd # -------------------------------------------- # OPTIONAL: APP LOG FORMAT # -------------------------------------------- -APP_LOG=single \ No newline at end of file +LOG_CHANNEL=single \ No newline at end of file diff --git a/app.json b/app.json index c2cdd7b9e0..c8ed42c3bd 100644 --- a/app.json +++ b/app.json @@ -118,7 +118,7 @@ "description": "The duration (in seconds) that the user should be blocked from attempting to authenticate again.", "value": "60" }, - "APP_LOG": { + "LOG_CHANNEL": { "description": "Driver to send logs to. (errorlog for stderr)", "value": "errorlog" },