Merge pull request #4669 from matrix-org/erikj/log_exception
Cleanup top level request exception loggingpull/4676/head
commit
028267acd2
|
@ -0,0 +1 @@
|
|||
Cleanup request exception logging
|
|
@ -106,10 +106,10 @@ def wrap_json_request_handler(h):
|
|||
# trace.
|
||||
f = failure.Failure()
|
||||
logger.error(
|
||||
"Failed handle request via %r: %r: %s",
|
||||
h,
|
||||
"Failed handle request via %r: %r",
|
||||
request.request_metrics.name,
|
||||
request,
|
||||
f.getTraceback().rstrip(),
|
||||
exc_info=(f.type, f.value, f.getTracebackObject()),
|
||||
)
|
||||
# Only respond with an error response if we haven't already started
|
||||
# writing, otherwise lets just kill the connection
|
||||
|
|
Loading…
Reference in New Issue