Skip to content

Commit e758d45

Browse files
chore(log): Further reduce log level of dying tasks
1 parent 007c87e commit e758d45

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/gallia/utils.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -266,8 +266,8 @@ def handle_task_error(fut: asyncio.Future[Any]) -> None:
266266
except BaseException as e:
267267
task_name = task_name if task_name is not None else "Task"
268268

269-
# Info level is enough, since our aim is only to consume the stack trace
270-
logger.info(f"{task_name} ended with error: {e!r}")
269+
# Debug level is enough, since our aim is only to consume the stack trace
270+
logger.debug(f"{task_name} ended with error: {e!r}")
271271

272272

273273
P = ParamSpec("P")

0 commit comments

Comments
 (0)