♻️(back) remove filtering on logging handler

Level filtering was used on the logging console handler. We remove as it
is not necessary to have it.
This commit is contained in:
Manuel Raynaud
2025-03-26 15:11:25 +01:00
parent be051ad7d2
commit c0dfb4b6b3

View File

@@ -586,14 +586,16 @@ class Base(Configuration):
LOGGING = {
"version": 1,
"disable_existing_loggers": False,
"formatters": {
"simple": {
"format": "{asctime} {name} {levelname} {message}",
"style": "{",
},
},
"handlers": {
"console": {
"class": "logging.StreamHandler",
"level": values.Value(
"ERROR",
environ_name="LOGGING_LEVEL_HANDLERS_CONSOLE",
environ_prefix=None,
),
"formatter": "simple",
},
},
# Override root logger to send it to console