summary refs log tree commit diff
path: root/synapse
diff options
context:
space:
mode:
authorDaniel Wagner-Hall <dawagner@gmail.com>2016-02-02 19:21:49 +0000
committerDaniel Wagner-Hall <dawagner@gmail.com>2016-02-02 19:21:49 +0000
commit2df6114bc449194fa99aae3f7c41b37e1ea0dbcf (patch)
tree35c5180ead04a957ee9036f18a7256586d69df01 /synapse
parentExplain what W503 is (diff)
downloadsynapse-2df6114bc449194fa99aae3f7c41b37e1ea0dbcf.tar.xz
Log more diagnostics for unrecognised access tokens
Diffstat (limited to 'synapse')
-rw-r--r--synapse/api/auth.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/synapse/api/auth.py b/synapse/api/auth.py

index c5a2865e26..5bba9343f6 100644 --- a/synapse/api/auth.py +++ b/synapse/api/auth.py
@@ -696,6 +696,7 @@ class Auth(object): def _look_up_user_by_access_token(self, token): ret = yield self.store.get_user_by_access_token(token) if not ret: + logger.warn("Unrecognised access token - not in store: %s" % (token,)) raise AuthError( self.TOKEN_NOT_FOUND_HTTP_STATUS, "Unrecognised access token.", errcode=Codes.UNKNOWN_TOKEN @@ -713,6 +714,7 @@ class Auth(object): token = request.args["access_token"][0] service = yield self.store.get_app_service_by_token(token) if not service: + logger.warn("Unrecognised appservice access token: %s" % (token,)) raise AuthError( self.TOKEN_NOT_FOUND_HTTP_STATUS, "Unrecognised access token.",