Set console production log level to WARNING.

Updated the log level from INFO to WARNING in the console production handler. This change aims to reduce log noise and surface only warnings and errors in production environments.
This commit is contained in:
Egor Pavlovich Gorbunov 2025-05-07 04:57:18 +03:00
parent 4d63bde7a3
commit d1cd8515b5

View file

@ -34,7 +34,7 @@ LOGGING = {
"formatter": "color",
},
"console_production": {
"level": "INFO",
"level": "WARNING",
"class": "logging.StreamHandler",
"formatter": "color",
},