Fix DEBUG logging to console

This commit is contained in:
Panoramic 2024-07-29 12:50:40 +03:00
parent 171bd7e52a
commit fee9a2bb16
1 changed files with 1 additions and 1 deletions

View File

@ -57,7 +57,7 @@ class Config:
if console_logging_enabled:
handler = logging.StreamHandler(sys.stdout)
handler.setFormatter(formatter)
coloredlogs.install(handler=handler)
coloredlogs.install(handler=handler, logger=logger, level=log_level)
# Storage setup
self.store_path = self._get_cfg(["storage", "store_path"], required=True)