Skip to content
Snippets Groups Projects
Commit d4952e68 authored by Erik Johnston's avatar Erik Johnston
Browse files

Merge pull request #81 from matrix-org/bugs/SYN-282

SYN-282: Don't log tracebacks for client errors
parents 5806d524 6375bd3e
No related branches found
No related tags found
No related merge requests found
......@@ -54,7 +54,7 @@ class BaseMediaResource(Resource):
try:
yield request_handler(self, request)
except CodeMessageException as e:
logger.exception(e)
logger.info("Responding with error: %r", e)
respond_with_json(
request, e.code, cs_exception(e), send_cors=True
)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment