diff options
author | Erik Johnston <erik@matrix.org> | 2015-06-15 17:11:44 +0100 |
---|---|---|
committer | Erik Johnston <erik@matrix.org> | 2015-06-15 17:11:44 +0100 |
commit | cee69441d3d3b4d966b6ec69c7dbf4eb3b876bb3 (patch) | |
tree | aed730c6d9d10710be309b422bf411447e3decfc /synapse/api/auth.py | |
parent | Create SynapseRequest that overrides __repr__ to not print access_token (diff) | |
download | synapse-cee69441d3d3b4d966b6ec69c7dbf4eb3b876bb3.tar.xz |
Log more when we have processed the request
Diffstat (limited to 'synapse/api/auth.py')
-rw-r--r-- | synapse/api/auth.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/synapse/api/auth.py b/synapse/api/auth.py index d5bf0be85c..4da62e5d8d 100644 --- a/synapse/api/auth.py +++ b/synapse/api/auth.py @@ -370,6 +370,8 @@ class Auth(object): user_agent=user_agent ) + request.authenticated_entity = user.to_string() + defer.returnValue((user, ClientInfo(device_id, token_id))) except KeyError: raise AuthError( |