diff options
author | Erik Johnston <erik@matrix.org> | 2020-02-06 13:31:05 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-02-06 13:31:05 +0000 |
commit | ed630ea17c40d328cc0796e35d37287768c7140d (patch) | |
tree | 0ae50c65db5888606bbde8482ed61157072272aa /synapse/storage/data_stores | |
parent | Merge pull request #6823 from matrix-org/rav/redact_changes/5 (diff) | |
download | synapse-ed630ea17c40d328cc0796e35d37287768c7140d.tar.xz |
Reduce amount of logging at INFO level. (#6862)
A lot of the things we log at INFO are now a bit superfluous, so lets make them DEBUG logs to reduce the amount we log by default. Co-Authored-By: Brendan Abolivier <babolivier@matrix.org> Co-authored-by: Brendan Abolivier <github@brendanabolivier.com>
Diffstat (limited to 'synapse/storage/data_stores')
-rw-r--r-- | synapse/storage/data_stores/main/user_directory.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/synapse/storage/data_stores/main/user_directory.py b/synapse/storage/data_stores/main/user_directory.py index 90c180ec6d..6b8130bf0f 100644 --- a/synapse/storage/data_stores/main/user_directory.py +++ b/synapse/storage/data_stores/main/user_directory.py @@ -183,7 +183,7 @@ class UserDirectoryBackgroundUpdateStore(StateDeltasStore): ) return 1 - logger.info( + logger.debug( "Processing the next %d rooms of %d remaining" % (len(rooms_to_work_on), progress["remaining"]) ) @@ -308,7 +308,7 @@ class UserDirectoryBackgroundUpdateStore(StateDeltasStore): ) return 1 - logger.info( + logger.debug( "Processing the next %d users of %d remaining" % (len(users_to_work_on), progress["remaining"]) ) |