use the same log format for colored log

This commit is contained in:
Son NK 2019-12-08 16:57:57 +01:00
parent 4c8c48bb23
commit b09f74c445
1 changed files with 1 additions and 1 deletions

View File

@ -68,7 +68,7 @@ def _get_logger(name):
logger.propagate = False
if COLOR_LOG:
coloredlogs.install(level="DEBUG", logger=logger)
coloredlogs.install(level="DEBUG", logger=logger, fmt=_log_format)
return logger