From 53099f630d15b5b5ab737438c7c83506c7afdf80 Mon Sep 17 00:00:00 2001 From: Disco DeDisco Date: Tue, 6 Jan 2026 14:28:13 -0500 Subject: [PATCH] added LOGGING params to core.settings, tho with USER nonroot commented-out of Dockerfile, not sure this does anything yet --- src/core/settings.py | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/src/core/settings.py b/src/core/settings.py index 7332355..8eb31f2 100644 --- a/src/core/settings.py +++ b/src/core/settings.py @@ -128,3 +128,14 @@ USE_TZ = True STATIC_URL = 'static/' STATIC_ROOT = BASE_DIR / 'static' + +LOGGING = { + "version": 1, + "disable_existing_loggers": False, + "handlers": { + "console": {"class": "logging.StreamHandler"}, + }, + "loggers": { + "root": {"handlers": ["console"], "level": "INFO"}, + }, +}