Compare commits

..

No commits in common. "25d91b85f3b7802cebcfa417bf61b9e77fa24098" and "f450102c932fee9c09555f1cf476e3b1f3b7e812" have entirely different histories.

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.grey)
Console.set_foreground_color(ForegroundColorEnum.green)
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.blue)
Console.set_foreground_color(ForegroundColorEnum.green)
Console.write_line(output)
Console.set_foreground_color(ForegroundColorEnum.default)