Skip to content

Commit

Permalink
fix: warn the user (instead of DEBUG) log when runtime exit (#125)
Browse files Browse the repository at this point in the history
  • Loading branch information
fubuloubu authored Oct 1, 2024
1 parent 4d6c75c commit 13b843f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion silverback/runner.py
Original file line number Diff line number Diff line change
Expand Up @@ -234,7 +234,7 @@ async def run(self):
)
if runtime_errors := "\n".join(str(task.exception()) for task in tasks_with_errors):
# NOTE: In case we are somehow not displaying the error correctly with task status
logger.debug(f"Runtime error(s) detected, shutting down:\n{runtime_errors}")
logger.warning(f"Runtime error(s) detected, shutting down:\n{runtime_errors}")

# Cancel any still running
(task.cancel() for task in tasks_running)
Expand Down

0 comments on commit 13b843f

Please sign in to comment.