From f64d0a09a8a9458ee350aff8a3c1a6b73d370dff Mon Sep 17 00:00:00 2001 From: Untone Date: Tue, 23 Apr 2024 14:41:19 +0300 Subject: [PATCH] color-fix --- services/logger.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/services/logger.py b/services/logger.py index 876a182f..cd45f860 100644 --- a/services/logger.py +++ b/services/logger.py @@ -4,7 +4,7 @@ import colorlog # Define the color scheme color_scheme = { - "DEBUG": "light_black", + "DEBUG": "cyan", "INFO": "green", "WARNING": "yellow", "ERROR": "red", @@ -16,7 +16,7 @@ secondary_colors = { "log_name": {"DEBUG": "blue"}, "asctime": {"DEBUG": "cyan"}, "process": {"DEBUG": "purple"}, - "module": {"DEBUG": "light_black,bg_blue"}, + "module": {"DEBUG": "cyan,bg_blue"}, "funcName": {"DEBUG": "light_white,bg_blue"}, # Add this line }