Oops, remove debug logging

pull/915/head
David Baker 2016-07-11 09:07:40 +01:00
parent 385aec4010
commit 9c491366c5
1 changed files with 0 additions and 4 deletions

View File

@ -191,8 +191,6 @@ class ThreepidRestServlet(RestServlet):
def onThreepidEmailTokenRequest(self, request):
body = parse_json_object_from_request(request)
logger.error("hi")
required = ['id_server', 'client_secret', 'email', 'send_attempt']
absent = []
for k in required:
@ -206,8 +204,6 @@ class ThreepidRestServlet(RestServlet):
'email', body['email']
)
logger.error("existing %r", existingUid)
if existingUid is not None:
raise SynapseError(400, "Email is already in use", Codes.THREEPID_IN_USE)