Update logging configuration to set INFO level for general logs and DEBUG for specific loggers

This commit is contained in:
Joakim Hellsén 2026-02-12 05:02:01 +01:00
commit e2c0bb5e8d
Signed by: Joakim Hellsén
SSH key fingerprint: SHA256:/9h/CsExpFp+PRhsfA0xznFx2CGfTT5R/kpuFfUgEQk

View file

@ -127,9 +127,19 @@ LOGGING: dict[str, Any] = {
"loggers": {
"": {
"handlers": ["console"],
"level": "DEBUG",
"level": "INFO",
"propagate": True,
},
"ttvdrops": {
"handlers": ["console"],
"level": "DEBUG",
"propagate": False,
},
"django": {
"handlers": ["console"],
"level": "INFO",
"propagate": False,
},
"django.utils.autoreload": {
"handlers": ["console"],
"level": "INFO",