summary refs log tree commit diff
path: root/synapse/handlers/auth.py
diff options
context:
space:
mode:
authorErik Johnston <erik@matrix.org>2015-08-19 09:41:07 +0100
committerErik Johnston <erik@matrix.org>2015-08-19 09:41:07 +0100
commit40da1f200d6a7778acc76562fcecbbcd3f97eee3 (patch)
tree7910c849b8596a82ae524a6e1131a63d53c5fc19 /synapse/handlers/auth.py
parentFix regression where we incorrectly responded with a 200 to /login (diff)
downloadsynapse-40da1f200d6a7778acc76562fcecbbcd3f97eee3.tar.xz
Remove an access token log line
Diffstat (limited to 'synapse/handlers/auth.py')
-rw-r--r--synapse/handlers/auth.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/synapse/handlers/auth.py b/synapse/handlers/auth.py
index 4947c40519..be2baeaece 100644
--- a/synapse/handlers/auth.py
+++ b/synapse/handlers/auth.py
@@ -287,7 +287,7 @@ class AuthHandler(BaseHandler):
 
         reg_handler = self.hs.get_handlers().registration_handler
         access_token = reg_handler.generate_token(user_id)
-        logger.info("Adding token %s for user %s", access_token, user_id)
+        logger.info("Logging in user %s", user_id)
         yield self.store.add_access_token_to_user(user_id, access_token)
         defer.returnValue(access_token)