From: Ben Darnell Date: Mon, 30 Mar 2015 03:22:55 +0000 (-0400) Subject: Use more consistent language in exception logs. X-Git-Tag: v4.2.0b1~38 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=0f92f995d0714d95bb041d4856a90b7a92f1c897;p=thirdparty%2Ftornado.git Use more consistent language in exception logs. --- diff --git a/tornado/concurrent.py b/tornado/concurrent.py index 4b0a7804e..4fdc4b285 100644 --- a/tornado/concurrent.py +++ b/tornado/concurrent.py @@ -291,7 +291,7 @@ class Future(object): try: cb(self) except Exception: - app_log.exception('exception calling callback %r for %r', + app_log.exception('Exception in callback %r for %r', cb, self) self._callbacks = None