diff options
author | Amber Brown <hawkowl@atleastfornow.net> | 2018-10-29 22:59:44 +1100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-10-29 22:59:44 +1100 |
commit | c4b3698a80468957c63b2a79685ac06f76cabae1 (patch) | |
tree | 82a44338b9cfa8c97c597651b64a9b8efe4c0f1f /synapse/replication | |
parent | Port register_new_matrix_user to Python 3 and add tests (#4085) (diff) | |
download | synapse-c4b3698a80468957c63b2a79685ac06f76cabae1.tar.xz |
Make the replication logger quieter (#4108)
Diffstat (limited to 'synapse/replication')
-rw-r--r-- | synapse/replication/tcp/client.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/synapse/replication/tcp/client.py b/synapse/replication/tcp/client.py index cbe9645817..586dddb40b 100644 --- a/synapse/replication/tcp/client.py +++ b/synapse/replication/tcp/client.py @@ -106,7 +106,7 @@ class ReplicationClientHandler(object): Can be overriden in subclasses to handle more. """ - logger.info("Received rdata %s -> %s", stream_name, token) + logger.debug("Received rdata %s -> %s", stream_name, token) return self.store.process_replication_rows(stream_name, token, rows) def on_position(self, stream_name, token): |