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 9, 2019
1 parent e513b30 commit d62b84f
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:
self._logger.warning('Event callback failed', exc_info=sys.exc_info())
self._logger.debug('Event callback failed', exc_info=sys.exc_info())
else:
f.set_result(value)

Expand Down

0 comments on commit d62b84f

Please sign in to comment.