diff options
author | Olivier Wilkinson (reivilibre) <oliverw@matrix.org> | 2022-12-19 21:23:15 +0000 |
---|---|---|
committer | Olivier Wilkinson (reivilibre) <oliverw@matrix.org> | 2022-12-19 21:48:00 +0000 |
commit | 37153a54787ce7401307477044f8235aa596d45c (patch) | |
tree | a334c08e303a9976f15c5f71a7ee5834deb3425f /synapse/rest/client/room.py | |
parent | Example: room send event profiling (diff) | |
download | synapse-37153a54787ce7401307477044f8235aa596d45c.tar.xz |
Add logging
Diffstat (limited to '')
-rw-r--r-- | synapse/rest/client/room.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/synapse/rest/client/room.py b/synapse/rest/client/room.py index 6d8421a523..57dbab5ae1 100644 --- a/synapse/rest/client/room.py +++ b/synapse/rest/client/room.py @@ -351,6 +351,7 @@ class RoomSendEventRestServlet(TransactionRestServlet): txn_id: Optional[str] = None, ) -> Tuple[int, JsonDict]: requester = await self.auth.get_user_by_req(request, allow_guest=True) + logger.info("SP!!!") with SelectiveProfiling( send_event_profiler, enable=requester.user.to_string() == "@reivilibre.element:librepush.net", |