Make the replication logger quieter (#4108)
This commit is contained in:
parent
77d70a7646
commit
c4b3698a80
|
@ -0,0 +1 @@
|
||||||
|
The "Received rdata" log messages on workers is now logged at DEBUG, not INFO.
|
|
@ -106,7 +106,7 @@ class ReplicationClientHandler(object):
|
||||||
|
|
||||||
Can be overriden in subclasses to handle more.
|
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)
|
return self.store.process_replication_rows(stream_name, token, rows)
|
||||||
|
|
||||||
def on_position(self, stream_name, token):
|
def on_position(self, stream_name, token):
|
||||||
|
|
Loading…
Reference in New Issue