我正在尝试通过覆盖该tornado.web.Application._handle_request_exception
方法来实现自定义未处理的请求异常日志记录:
def _handle_request_exception(self, e):
logging.error('error') # Just for test.
但我看到相同的日志输出,如:
2012-09-01 03:35:09,947 [7399] root ERROR: Uncaught exception GET / (127.0.0.1)
HTTPRequest(...)
Traceback (most recent call last):
而不是我的自定义消息。我究竟做错了什么?