Fix missing parameter in log message

This is to fix a missing parameter issue in the log message.

Change-Id: Icf6a0ece18c5614b68a0015814faedf0cc7be61f
This commit is contained in:
zhufl 2020-01-03 17:20:29 +08:00 committed by Lingxian Kong
parent 8356f849f0
commit eb6cea16ec

@ -286,7 +286,7 @@ class Manager(manager.Manager):
return self._get_repl_offset()
def wait_for_txn(self, context, txn):
LOG.info("Waiting on repl offset '%s'."), txn
LOG.info("Waiting on repl offset '%s'.", txn)
def _wait_for_txn():
current_offset = self._get_repl_offset()