From d1cd8515b54e6116c54555ce0e4f3f71d36c13c1 Mon Sep 17 00:00:00 2001 From: Egor fureunoir Gorbunov Date: Wed, 7 May 2025 04:57:18 +0300 Subject: [PATCH] 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. --- evibes/settings/logconfig.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/evibes/settings/logconfig.py b/evibes/settings/logconfig.py index 085ed396..08a6e438 100644 --- a/evibes/settings/logconfig.py +++ b/evibes/settings/logconfig.py @@ -34,7 +34,7 @@ LOGGING = { "formatter": "color", }, "console_production": { - "level": "INFO", + "level": "WARNING", "class": "logging.StreamHandler", "formatter": "color", },