From 8bd237206cfc0a0d58e0617f3f3e328d24c2737f Mon Sep 17 00:00:00 2001 From: Sven Heidemann Date: Wed, 30 Nov 2022 15:17:08 +0100 Subject: [PATCH] Fixed logging #123 --- src/cpl_core/logging/logger_service.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/cpl_core/logging/logger_service.py b/src/cpl_core/logging/logger_service.py index b3309f96..86feda55 100644 --- a/src/cpl_core/logging/logger_service.py +++ b/src/cpl_core/logging/logger_service.py @@ -169,7 +169,7 @@ class Logger(LoggerABC): # check if message can be shown in console if self._console.value >= LoggingLevelEnum.TRACE.value: - Console.set_foreground_color(ForegroundColorEnum.green) + Console.set_foreground_color(ForegroundColorEnum.grey) Console.write_line(output) Console.set_foreground_color(ForegroundColorEnum.default) @@ -182,7 +182,7 @@ class Logger(LoggerABC): # check if message can be shown in console if self._console.value >= LoggingLevelEnum.DEBUG.value: - Console.set_foreground_color(ForegroundColorEnum.green) + Console.set_foreground_color(ForegroundColorEnum.blue) Console.write_line(output) Console.set_foreground_color(ForegroundColorEnum.default)