diff options
author | Erik Johnston <erik@matrix.org> | 2015-08-19 09:41:07 +0100 |
---|---|---|
committer | Erik Johnston <erik@matrix.org> | 2015-08-19 09:41:07 +0100 |
commit | 40da1f200d6a7778acc76562fcecbbcd3f97eee3 (patch) | |
tree | 7910c849b8596a82ae524a6e1131a63d53c5fc19 /synapse | |
parent | Fix regression where we incorrectly responded with a 200 to /login (diff) | |
download | synapse-40da1f200d6a7778acc76562fcecbbcd3f97eee3.tar.xz |
Remove an access token log line
Diffstat (limited to 'synapse')
-rw-r--r-- | synapse/handlers/auth.py | 2 |
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) |