From: Ben Darnell Date: Fri, 17 Dec 2010 21:42:33 +0000 (-0800) Subject: Remove logging for EINTR in IOLoop, since this is not really an error. X-Git-Tag: v1.2.0~52 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=d677b158ddd7cd793d9472410ad489457df0d4ba;p=thirdparty%2Ftornado.git Remove logging for EINTR in IOLoop, since this is not really an error. --- diff --git a/tornado/ioloop.py b/tornado/ioloop.py index 666257c99..70e2155dd 100644 --- a/tornado/ioloop.py +++ b/tornado/ioloop.py @@ -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