summary refs log tree commit diff
path: root/synapse/handlers
diff options
context:
space:
mode:
authorPatrick Cloke <clokep@users.noreply.github.com>2023-03-08 15:08:56 -0500
committerGitHub <noreply@github.com>2023-03-08 20:08:56 +0000
commit88efc75bab2849b7b1cee52770dea3cf9925b2e8 (patch)
tree712e01bdde16a0b03f1e1d4b88983f8b2efab6ff /synapse/handlers
parentAdd a missing endpoint to the workers documentation. (#15223) (diff)
downloadsynapse-88efc75bab2849b7b1cee52770dea3cf9925b2e8.tar.xz
Include the room ID in more purge room log lines. (#15222)
Diffstat (limited to 'synapse/handlers')
-rw-r--r--synapse/handlers/pagination.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/synapse/handlers/pagination.py b/synapse/handlers/pagination.py
index 8c79c055ba..63b35c8d62 100644
--- a/synapse/handlers/pagination.py
+++ b/synapse/handlers/pagination.py
@@ -683,7 +683,7 @@ class PaginationHandler:
 
                     await self._storage_controllers.purge_events.purge_room(room_id)
 
-            logger.info("complete")
+            logger.info("purge complete for room_id %s", room_id)
             self._delete_by_id[delete_id].status = DeleteStatus.STATUS_COMPLETE
         except Exception:
             f = Failure()