Log cancels with appropriate level

310_plus
Tyler Goodlet 2022-03-04 08:55:24 -05:00
parent f9f4bcf27c
commit af1ee3f0a6
1 changed files with 6 additions and 1 deletions

View File

@ -266,7 +266,12 @@ def _run_asyncio_task(
task.exception()
except BaseException as terr:
task_err = terr
log.exception(f'`asyncio` task: {task.get_name()} errored')
if isinstance(terr, CancelledError):
log.cancel(f'`asyncio` task cancelled: {task.get_name()}')
else:
log.exception(f'`asyncio` task: {task.get_name()} errored')
assert type(terr) is type(aio_err), 'Asyncio task error mismatch?'
if aio_err is not None: