diff options
author | Michael Kaye <1917473+michaelkaye@users.noreply.github.com> | 2019-10-24 17:55:53 +0100 |
---|---|---|
committer | Michael Kaye <1917473+michaelkaye@users.noreply.github.com> | 2019-10-24 17:55:53 +0100 |
commit | 39266a9c9f01515d6db3dc5372bb9463f8e81e4a (patch) | |
tree | 4910b1965aa2a97b94ea5913b5cfee48f8c416d3 /synapse | |
parent | Merge pull request #6248 from matrix-org/erikj/move_schema_files (diff) | |
download | synapse-39266a9c9f01515d6db3dc5372bb9463f8e81e4a.tar.xz |
Make user/room stats log line less verbose.
Diffstat (limited to 'synapse')
-rw-r--r-- | synapse/storage/data_stores/main/stats.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/synapse/storage/data_stores/main/stats.py b/synapse/storage/data_stores/main/stats.py index 5ab639b2ad..4d59b7833f 100644 --- a/synapse/storage/data_stores/main/stats.py +++ b/synapse/storage/data_stores/main/stats.py @@ -332,7 +332,7 @@ 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( + logger.debug( "Updating %s stats for %s: %s", stats_type, stats_id, fields ) self._update_stats_delta_txn( |