mirror of
https://git.anonymousland.org/anonymousland/synapse.git
synced 2024-10-01 11:49:51 -04:00
Change logging of puppeted requests to better differentiate users (#10779)
This used to be a comma and got accidentally changed to a period in #9654, but a pipe character is more easier to parse visually.
This commit is contained in:
parent
580a15e039
commit
66d72b7e17
1
changelog.d/10779.misc
Normal file
1
changelog.d/10779.misc
Normal file
@ -0,0 +1 @@
|
|||||||
|
Change the format of authenticated users in logs when a user is being puppeted by and admin user.
|
@ -384,7 +384,7 @@ class SynapseRequest(Request):
|
|||||||
# authenticated (e.g. and admin is puppetting a user) then we log both.
|
# authenticated (e.g. and admin is puppetting a user) then we log both.
|
||||||
requester, authenticated_entity = self.get_authenticated_entity()
|
requester, authenticated_entity = self.get_authenticated_entity()
|
||||||
if authenticated_entity:
|
if authenticated_entity:
|
||||||
requester = f"{authenticated_entity}.{requester}"
|
requester = f"{authenticated_entity}|{requester}"
|
||||||
|
|
||||||
self.site.access_logger.log(
|
self.site.access_logger.log(
|
||||||
log_level,
|
log_level,
|
||||||
|
Loading…
Reference in New Issue
Block a user