Make 'STARTED' command INFO not warning

This commit is contained in:
Patrick Robertson
2025-03-04 16:51:09 +00:00
parent e6a578e60e
commit be09aa927d

View File

@@ -10,7 +10,7 @@ class ConsoleDb(Database):
"""
def started(self, item: Metadata) -> None:
logger.warning(f"STARTED {item}")
logger.info(f"STARTED {item}")
def failed(self, item: Metadata, reason:str) -> None:
logger.error(f"FAILED {item}: {reason}")