Make logging work

This commit is contained in:
Lukáš Kucharczyk 2023-01-05 22:14:51 +01:00
parent d00bb1cd06
commit 9c56ed4ce8
Signed by: lukas
SSH Key Fingerprint: SHA256:vMuSwvwAvcT6htVAioMP7rzzwMQNi3roESyhv+nAxeg
2 changed files with 10 additions and 3 deletions

View File

@ -6,7 +6,7 @@ RUN npm install && \
FROM python:3.10-slim-bullseye
ENV VERSION_NUMBER 0.1.0-42-gbedfbb7
ENV VERSION_NUMBER 0.1.0-43-gd00bb1c
ENV PROD 1
RUN useradd --create-home --uid 1000 timetracker

View File

@ -133,8 +133,15 @@ DEFAULT_AUTO_FIELD = "django.db.models.BigAutoField"
LOGGING = {
"version": 1,
"disable_existing_loggers": False,
"handlers": {"console": {"class": "logging.StreamHandler"}},
"root": {"handlers": ["console"], "level": "WARNING"},
"handlers": {
"console": {"class": "logging.StreamHandler"},
},
"loggers": {
"django": {
"handlers": ["console"],
"level": "INFO",
},
},
}
CSRF_TRUSTED_ORIGINS = []