mirror of
https://git.anonymousland.org/anonymousland/synapse.git
synced 2024-12-24 22:39:27 -05:00
Add additional logging for SAML sessions. (#7971)
This commit is contained in:
parent
f23c77389d
commit
3a00bd1378
1
changelog.d/7971.misc
Normal file
1
changelog.d/7971.misc
Normal file
@ -0,0 +1 @@
|
||||
Log the SAML session ID during creation.
|
@ -96,6 +96,9 @@ class SamlHandler:
|
||||
relay_state=client_redirect_url
|
||||
)
|
||||
|
||||
# Since SAML sessions timeout it is useful to log when they were created.
|
||||
logger.info("Initiating a new SAML session: %s" % (reqid,))
|
||||
|
||||
now = self._clock.time_msec()
|
||||
self._outstanding_requests_dict[reqid] = Saml2SessionData(
|
||||
creation_time=now, ui_auth_session_id=ui_auth_session_id,
|
||||
|
Loading…
Reference in New Issue
Block a user