Skip to content
This repository has been archived by the owner on Apr 26, 2024. It is now read-only.

Commit

Permalink
Remove log error for .well-known/matrix/client (#4972)
Browse files Browse the repository at this point in the history
  • Loading branch information
michaelkaye authored and richvdh committed Apr 24, 2019
1 parent 6b2b9a5 commit 788163e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions changelog.d/4972.misc
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Reduce log level of .well-known/matrix/client responses.
2 changes: 1 addition & 1 deletion synapse/rest/well_known.py
Original file line number Diff line number Diff line change
Expand Up @@ -68,6 +68,6 @@ def render_GET(self, request):
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 comments on commit 788163e

Please sign in to comment.