From 930a1fcff9b0f49194d439bc5578d8482c242996 Mon Sep 17 00:00:00 2001 From: asmorodskyi Date: Mon, 9 Jan 2023 17:35:17 +0100 Subject: [PATCH] Fix broken logging --- container-startup | 2 +- webui/settings.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/container-startup b/container-startup index f892c193..1a2e5ce3 100755 --- a/container-startup +++ b/container-startup @@ -39,7 +39,7 @@ case "$CMD" in ;; "run") python3 manage.py migrate - uwsgi --enable-threads --http-socket 0.0.0.0:8000 --plugins python3 --log INFO --module webui.wsgi --static-map /static=/pcw/ocw/static + uwsgi --enable-threads --http-socket 0.0.0.0:8000 --plugins python3 --module webui.wsgi --static-map /static=/pcw/ocw/static ;; "check") python3 manage.py check diff --git a/webui/settings.py b/webui/settings.py index 18d2a2de..14d05890 100644 --- a/webui/settings.py +++ b/webui/settings.py @@ -155,7 +155,7 @@ 'handlers': ['console'], }, 'ocw': { - 'level': 'DEBUG', + 'level': 'INFO', 'handlers': ['console'], 'propagate': False, }