Skip to content

Commit 7a811e1

Browse files
committed
windows: downgrade messages on coro exceptions to debug
1 parent 152984b commit 7a811e1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

qasync/_windows.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ def _process_events(self, events):
4242
self._logger.debug('Invoking event callback {}'.format(callback))
4343
value = callback(transferred, key, ov)
4444
except OSError:
45-
self._logger.warning('Event callback failed', exc_info=sys.exc_info())
45+
self._logger.debug('Event callback failed', exc_info=sys.exc_info())
4646
else:
4747
if not f.cancelled():
4848
f.set_result(value)

0 commit comments

Comments
 (0)