From d88e477496bc68348e9ac07d5699f8af2c03be29 Mon Sep 17 00:00:00 2001 From: Bubka <858858+Bubka@users.noreply.github.com> Date: Thu, 21 Jul 2022 15:44:58 +0200 Subject: [PATCH] Fix .env var name --- .env.example | 2 +- Dockerfile | 2 +- docker/docker-compose.yml | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.env.example b/.env.example index 2cc203b3..83e896e7 100644 --- a/.env.example +++ b/.env.example @@ -51,7 +51,7 @@ LOG_CHANNEL=daily # If you set it to debug your logs will grow large, and fast. If you set it to emergency probably # nothing will get logged, ever. -APP_LOG_LEVEL=notice +LOG_LEVEL=notice # If you're looking for performance improvements, you could install memcached. diff --git a/Dockerfile b/Dockerfile index af946c13..c3c6dcca 100644 --- a/Dockerfile +++ b/Dockerfile @@ -136,7 +136,7 @@ ENV \ # debug, info, notice, warning, error, critical, alert, emergency # If you set it to debug your logs will grow large, and fast. If you set it to emergency probably # nothing will get logged, ever. - APP_LOG_LEVEL=notice \ + LOG_LEVEL=notice \ # Database config & credentials # DB_CONNECTION can only be sqlite DB_CONNECTION=sqlite \ diff --git a/docker/docker-compose.yml b/docker/docker-compose.yml index fc1a47ba..ac4582bd 100644 --- a/docker/docker-compose.yml +++ b/docker/docker-compose.yml @@ -36,7 +36,7 @@ services: # debug, info, notice, warning, error, critical, alert, emergency # If you set it to debug your logs will grow large, and fast. If you set it to emergency probably # nothing will get logged, ever. - - APP_LOG_LEVEL=notice + - LOG_LEVEL=notice # Database config (can only be sqlite) - DB_DATABASE="/srv/database/database.sqlite" # If you're looking for performance improvements, you could install memcached.