Remove logging for EINTR in IOLoop, since this is not really an error.

This commit is contained in:
Ben Darnell 2010-12-17 13:42:33 -08:00
parent f73f135d2d
commit d677b158dd
1 changed files with 0 additions and 1 deletions

View File

@ -252,7 +252,6 @@ class IOLoop(object):
if (getattr(e, 'errno', None) == errno.EINTR or
(isinstance(getattr(e, 'args', None), tuple) and
len(e.args) == 2 and e.args[0] == errno.EINTR)):
logging.warning("Interrupted system call", exc_info=1)
continue
else:
raise