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):
私のカスタムメッセージの代わりに。私は何が間違っているのですか?