Skip to content
This repository has been archived by the owner on Apr 26, 2024. It is now read-only.

Commit

Permalink
Merge pull request #6250 from matrix-org/michaelkaye/make_user_stats_…
Browse files Browse the repository at this point in the history
…less_verbose

* commit '2020f1191':
  Add missing '.'
  Add changelog.d
  Make user/room stats log line less verbose.
  • Loading branch information
anoadragon453 committed Mar 16, 2020
2 parents 91aede1 + 2020f11 commit 2d9d79a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions changelog.d/6250.misc
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Reduce verbosity of user/room stats.
2 changes: 1 addition & 1 deletion synapse/storage/data_stores/main/stats.py
Original file line number Diff line number Diff line change
Expand Up @@ -332,7 +332,7 @@ def bulk_update_stats_delta(self, ts, updates, stream_id):
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(
Expand Down

0 comments on commit 2d9d79a

Please sign in to comment.