add some debug logs
This commit is contained in:
@ -207,6 +207,7 @@ class EventLoop(object):
|
|||||||
except (OSError, IOError) as e:
|
except (OSError, IOError) as e:
|
||||||
if errno_from_exception(e) in (errno.EPIPE, errno.EINTR):
|
if errno_from_exception(e) in (errno.EPIPE, errno.EINTR):
|
||||||
# Happens when the client closes the connection
|
# Happens when the client closes the connection
|
||||||
|
logging.debug('poll:%s', e)
|
||||||
continue
|
continue
|
||||||
else:
|
else:
|
||||||
logging.error('poll:%s', e)
|
logging.error('poll:%s', e)
|
||||||
|
Reference in New Issue
Block a user