removing logger output and adding tqdm

This commit is contained in:
wendtalexander
2023-01-18 17:58:33 +01:00
parent 501172f30d
commit a79fc86ab9
2 changed files with 17 additions and 13 deletions

View File

@@ -17,7 +17,7 @@ def makeLogger(name: str):
# create stream handler for terminal output
console_handler = logging.StreamHandler()
console_handler.setFormatter(console_formatter)
console_handler.setLevel(logging.DEBUG)
console_handler.setLevel(logging.INFO)
# create script specific logger
logger = logging.getLogger(name)