From a541947bb9c68df441db5a8febde09bf4b08ad12 Mon Sep 17 00:00:00 2001 From: mertalev <101130780+mertalev@users.noreply.github.com> Date: Sat, 16 Sep 2023 19:27:51 -0400 Subject: [PATCH] fixed logging colors --- machine-learning/app/config.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/machine-learning/app/config.py b/machine-learning/app/config.py index 09ba71d93..86493cb3e 100644 --- a/machine-learning/app/config.py +++ b/machine-learning/app/config.py @@ -56,7 +56,7 @@ log_settings = LogSettings() class CustomRichHandler(RichHandler): def __init__(self) -> None: - console = Console(no_color=log_settings.no_color) + console = Console(color_system="standard", no_color=log_settings.no_color) super().__init__( show_path=False, omit_repeated_times=False,