summary refs log tree commit diff
path: root/synapse/replication
diff options
context:
space:
mode:
authorAmber Brown <hawkowl@atleastfornow.net>2018-10-29 22:59:44 +1100
committerGitHub <noreply@github.com>2018-10-29 22:59:44 +1100
commitc4b3698a80468957c63b2a79685ac06f76cabae1 (patch)
tree82a44338b9cfa8c97c597651b64a9b8efe4c0f1f /synapse/replication
parentPort register_new_matrix_user to Python 3 and add tests (#4085) (diff)
downloadsynapse-c4b3698a80468957c63b2a79685ac06f76cabae1.tar.xz
Make the replication logger quieter (#4108)
Diffstat (limited to 'synapse/replication')
-rw-r--r--synapse/replication/tcp/client.py2
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):