added LOGGING params to core.settings, tho with USER nonroot commented-out of Dockerfile, not sure this does anything yet

This commit is contained in:
Disco DeDisco
2026-01-06 14:28:13 -05:00
parent 3006d86544
commit 53099f630d

View File

@@ -128,3 +128,14 @@ USE_TZ = True
STATIC_URL = 'static/' STATIC_URL = 'static/'
STATIC_ROOT = BASE_DIR / 'static' STATIC_ROOT = BASE_DIR / 'static'
LOGGING = {
"version": 1,
"disable_existing_loggers": False,
"handlers": {
"console": {"class": "logging.StreamHandler"},
},
"loggers": {
"root": {"handlers": ["console"], "level": "INFO"},
},
}