Improve logging of the mapping from SSO IDs to Matrix IDs. (#8773)

This commit is contained in:
Andrew Morgan 2020-11-23 13:45:23 +00:00 committed by GitHub
parent 8ca120df7c
commit 59a995f38d
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 13 additions and 5 deletions

View file

@ -71,19 +71,25 @@ class SsoHandler(BaseHandler):
Returns:
The mxid of a previously seen user.
"""
# Check if we already have a mapping for this user.
logger.info(
logger.debug(
"Looking for existing mapping for user %s:%s",
auth_provider_id,
remote_user_id,
)
# Check if we already have a mapping for this user.
previously_registered_user_id = await self.store.get_user_by_external_id(
auth_provider_id, remote_user_id,
)
# A match was found, return the user ID.
if previously_registered_user_id is not None:
logger.info("Found existing mapping %s", previously_registered_user_id)
logger.info(
"Found existing mapping for IdP '%s' and remote_user_id '%s': %s",
auth_provider_id,
remote_user_id,
previously_registered_user_id,
)
return previously_registered_user_id
# No match.