mirror of
https://git.anonymousland.org/anonymousland/synapse.git
synced 2025-06-25 14:30:28 -04:00
add some logging to the rooms stats updates, to try to track down a flaky test (#6167)
This commit is contained in:
parent
97e2722723
commit
276ae5c63e
3 changed files with 5 additions and 0 deletions
|
@ -332,6 +332,9 @@ class StatsStore(StateDeltasStore):
|
|||
def _bulk_update_stats_delta_txn(txn):
|
||||
for stats_type, stats_updates in updates.items():
|
||||
for stats_id, fields in stats_updates.items():
|
||||
logger.info(
|
||||
"Updating %s stats for %s: %s", stats_type, stats_id, fields
|
||||
)
|
||||
self._update_stats_delta_txn(
|
||||
txn,
|
||||
ts=ts,
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue