diff --git a/silverback/runner.py b/silverback/runner.py index 3856b0e6..af535df0 100644 --- a/silverback/runner.py +++ b/silverback/runner.py @@ -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)