diff options
author | Michael Kaye <1917473+michaelkaye@users.noreply.github.com> | 2020-02-05 08:57:38 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-02-05 08:57:37 +0000 |
commit | a831d2e4e3c424fb54f186bfa7d83a17965f933e (patch) | |
tree | 6e0383ce365fd78a55b66009f88fa452ba260ea7 /synapse | |
parent | Database updates to populate rooms.room_version (#6847) (diff) | |
download | synapse-a831d2e4e3c424fb54f186bfa7d83a17965f933e.tar.xz |
Reduce performance logging to DEBUG (#6833)
* Reduce tnx performance logging to DEBUG * Changelog.d
Diffstat (limited to 'synapse')
-rw-r--r-- | synapse/storage/database.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/synapse/storage/database.py b/synapse/storage/database.py index 1003dd84a5..3eeb2f7c04 100644 --- a/synapse/storage/database.py +++ b/synapse/storage/database.py @@ -343,7 +343,7 @@ class Database(object): top_three_counters = self._txn_perf_counters.interval(duration, limit=3) - perf_logger.info( + perf_logger.debug( "Total database time: %.3f%% {%s}", ratio * 100, top_three_counters ) |