color-fix
All checks were successful
Deploy on push / deploy (push) Successful in 21s

This commit is contained in:
Untone 2024-04-23 14:41:19 +03:00
parent 8436bc4305
commit f64d0a09a8

View File

@ -4,7 +4,7 @@ import colorlog
# Define the color scheme # Define the color scheme
color_scheme = { color_scheme = {
"DEBUG": "light_black", "DEBUG": "cyan",
"INFO": "green", "INFO": "green",
"WARNING": "yellow", "WARNING": "yellow",
"ERROR": "red", "ERROR": "red",
@ -16,7 +16,7 @@ secondary_colors = {
"log_name": {"DEBUG": "blue"}, "log_name": {"DEBUG": "blue"},
"asctime": {"DEBUG": "cyan"}, "asctime": {"DEBUG": "cyan"},
"process": {"DEBUG": "purple"}, "process": {"DEBUG": "purple"},
"module": {"DEBUG": "light_black,bg_blue"}, "module": {"DEBUG": "cyan,bg_blue"},
"funcName": {"DEBUG": "light_white,bg_blue"}, # Add this line "funcName": {"DEBUG": "light_white,bg_blue"}, # Add this line
} }