diff options
-rw-r--r-- | synapse/rest/client/v2_alpha/account.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/synapse/rest/client/v2_alpha/account.py b/synapse/rest/client/v2_alpha/account.py index 65e68d641b..d10812b0f0 100644 --- a/synapse/rest/client/v2_alpha/account.py +++ b/synapse/rest/client/v2_alpha/account.py @@ -692,6 +692,7 @@ class ThreepidAddRestServlet(RestServlet): assert_params_in_dict(body, ["client_secret", "sid"]) sid = body["sid"] client_secret = body["client_secret"] + logger.info("GOT CLIENT_SECRET: %s, FULL BODY: %s", client_secret, body) assert_valid_client_secret(client_secret) await self.auth_handler.validate_user_via_ui_auth( |