From d677b158ddd7cd793d9472410ad489457df0d4ba Mon Sep 17 00:00:00 2001 From: Ben Darnell Date: Fri, 17 Dec 2010 13:42:33 -0800 Subject: [PATCH] Remove logging for EINTR in IOLoop, since this is not really an error. --- tornado/ioloop.py | 1 - 1 file changed, 1 deletion(-) diff --git a/tornado/ioloop.py b/tornado/ioloop.py index 666257c9..70e2155d 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