From e2c0bb5e8d7dc671587658d40886ab30bf5329a6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Joakim=20Hells=C3=A9n?= Date: Thu, 12 Feb 2026 05:02:01 +0100 Subject: [PATCH] Update logging configuration to set INFO level for general logs and DEBUG for specific loggers --- config/settings.py | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) diff --git a/config/settings.py b/config/settings.py index 38b33d3..3b99501 100644 --- a/config/settings.py +++ b/config/settings.py @@ -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",