Make the replication logger quieter (#4108)

This commit is contained in:
Amber Brown 2018-10-29 22:59:44 +11:00 committed by GitHub
parent 77d70a7646
commit c4b3698a80
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 1 deletions

1
changelog.d/4108.misc Normal file
View File

@ -0,0 +1 @@
The "Received rdata" log messages on workers is now logged at DEBUG, not INFO.

View File

@ -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):