0
0
Fork 1
mirror of https://mau.dev/maunium/synapse.git synced 2024-07-08 12:18:48 +02:00

Drop replication log levels

This commit is contained in:
Erik Johnston 2016-09-09 14:05:01 +01:00
parent ea05155a8c
commit ab80d5e0a9
2 changed files with 2 additions and 3 deletions

View file

@ -229,7 +229,6 @@ class TransactionQueue(object):
"dropping transaction for now",
destination,
)
success = False
finally:
# We want to be *very* sure we delete this after we stop processing
self.pending_transactions.pop(destination, None)

View file

@ -181,7 +181,7 @@ class ReplicationResource(Resource):
def replicate(self, request_streams, limit):
writer = _Writer()
current_token = yield self.current_replication_token()
logger.info("Replicating up to %r", current_token)
logger.debug("Replicating up to %r", current_token)
yield self.account_data(writer, current_token, limit, request_streams)
yield self.events(writer, current_token, limit, request_streams)
@ -195,7 +195,7 @@ class ReplicationResource(Resource):
yield self.to_device(writer, current_token, limit, request_streams)
self.streams(writer, current_token, request_streams)
logger.info("Replicated %d rows", writer.total)
logger.debug("Replicated %d rows", writer.total)
defer.returnValue(writer.finish())
def streams(self, writer, current_token, request_streams):