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/push | |
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/push')
-rw-r--r-- | synapse/push/httppusher.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/synapse/push/httppusher.py b/synapse/push/httppusher.py index d0879b0490..5bb17d1228 100644 --- a/synapse/push/httppusher.py +++ b/synapse/push/httppusher.py @@ -398,7 +398,7 @@ class HttpPusher(object): Args: badge (int): number of unread messages """ - logger.info("Sending updated badge count %d to %s", badge, self.name) + logger.debug("Sending updated badge count %d to %s", badge, self.name) d = { "notification": { "id": "", |