cpl g in project directory #93 #127

Merged
edraft merged 9 commits from #93 into 2022.12 2022-12-01 12:26:02 +01:00
Showing only changes of commit 25d91b85f3 - Show all commits

View File

@ -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)