Skip to content
Snippets Groups Projects
Commit 788163e2 authored by Michael Kaye's avatar Michael Kaye Committed by Richard van der Hoff
Browse files

Remove log error for .well-known/matrix/client (#4972)

parent 6b2b9a58
No related branches found
No related tags found
No related merge requests found
Reduce log level of .well-known/matrix/client responses.
......@@ -68,6 +68,6 @@ class WellKnownResource(Resource):
request.setHeader(b"Content-Type", b"text/plain")
return b'.well-known not available'
logger.error("returning: %s", r)
logger.debug("returning: %s", r)
request.setHeader(b"Content-Type", b"application/json")
return json.dumps(r).encode("utf-8")
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