Skip to content

Commit cfb6185

Browse files
Merge pull request #162 from MOV-AI/improvement/default_verbosity_level
fix log patterns on callback logs
2 parents f85ee20 + b8fb6ec commit cfb6185

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

movai_core_shared/logger.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -212,7 +212,7 @@ def _get_console_handler(stream_config=None):
212212
if stream_config is None:
213213
console_handler = StdOutHandler()
214214
elif stream_config == CALLBACK_LOGGER:
215-
console_handler = StdOutHandler(stream=sys.stdout)
215+
console_handler = StdOutHandler(color=CALLBACK_STDOUT_COLORS, stream=sys.stdout)
216216
else:
217217
raise ValueError("Unknown stream config for the console logger!")
218218
console_handler.setFormatter(LOG_FORMATTER)

0 commit comments

Comments
 (0)