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

Commit

Permalink
debug logging -> info logging
Browse files Browse the repository at this point in the history
  • Loading branch information
anoadragon453 committed Jun 11, 2020
1 parent 48abf1b commit 1dde622
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion synapse/rest/client/v1/login.py
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,7 @@ async def on_POST(self, request):
else:
result = await self._do_other_login(login_submission)
except KeyError as e:
logger.debug("KeyError during login: %s", e)
logger.info("KeyError during login: %s", e)
raise SynapseError(400, "Missing JSON keys.")

well_known_data = self._well_known_builder.get_well_known()
Expand Down

0 comments on commit 1dde622

Please sign in to comment.