Add back happy path log lines, but drop their levels to debug

pull/8773/head
Andrew Morgan 2020-11-18 12:42:39 +00:00
parent c08ec463c2
commit 00673e1ced
2 changed files with 12 additions and 0 deletions

View File

@ -267,6 +267,12 @@ class SamlHandler(BaseHandler):
map_username_to_mxid_localpart(attrval), self.server_name
).to_string()
logger.debug(
"Looking for existing account based on mapped %s %s",
self._grandfathered_mxid_source_attribute,
user_id,
)
users = await self.store.get_users_by_id_case_insensitive(user_id)
if users:
registered_user_id = list(users.keys())[0]

View File

@ -71,6 +71,12 @@ class SsoHandler(BaseHandler):
Returns:
The mxid of a previously seen user.
"""
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,