forked from MirrorHub/synapse
Merge pull request #4669 from matrix-org/erikj/log_exception
Cleanup top level request exception logging
This commit is contained in:
commit
028267acd2
2 changed files with 4 additions and 3 deletions
1
changelog.d/4669.misc
Normal file
1
changelog.d/4669.misc
Normal file
|
@ -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 a new issue