Make 'STARTED' command INFO not warning

pull/234/head
Patrick Robertson 2025-03-04 16:51:09 +00:00
rodzic e6a578e60e
commit be09aa927d
1 zmienionych plików z 1 dodań i 1 usunięć

Wyświetl plik

@ -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}")