Skip to content

Commit

Permalink
Correct errors output
Browse files Browse the repository at this point in the history
  • Loading branch information
xchwarze committed Dec 2, 2024
1 parent 20f8799 commit 55979fd
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/UpdateManager.py
Original file line number Diff line number Diff line change
Expand Up @@ -286,7 +286,7 @@ def handle_auto_update(self):
try:
updater.update(self.config_section_self_update)
except Exception as exception:
logging.info(exception)
logging.error(exception)

# add missing new line separator
logging.info("\n")
Expand All @@ -307,7 +307,7 @@ def handle_tool_updates(self, updater, update_list):
updater.update(tool)
except Exception as exception:
failed_updates += 1
logging.info(exception)
logging.error(exception)

logging.info(colorama.Fore.YELLOW + f"\n[*] Update process completed: {total_updates - failed_updates} succeeded, {failed_updates} failed out of {total_updates} total updates.")

Expand Down

0 comments on commit 55979fd

Please sign in to comment.