Skip to content

Commit

Permalink
windows: downgrade messages on coro exceptions to debug
Browse files Browse the repository at this point in the history
  • Loading branch information
hartytp committed May 10, 2019
1 parent f43a479 commit b46c0bc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion quamash/_windows.py
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ def _process_events(self, events):
self._logger.debug('Invoking event callback {}'.format(callback))
value = callback(transferred, key, ov)
except OSError as e:
self._logger.warning('Event callback failed', exc_info=sys.exc_info())
self._logger.debug('Event callback failed', exc_info=sys.exc_info())
if not f.done():
f.set_exception(e)
else:
Expand Down

0 comments on commit b46c0bc

Please sign in to comment.