Fix a crash in exception printout

Says the number of arguments does not match the number of '%'.

Change-Id: I8b5e395a07328fb9d4ac7a19f8ed2ae1637bee3b
This commit is contained in:
Pete Zaitcev 2016-03-03 10:24:28 -07:00
parent 30624a866a
commit 09c73b86e9

View File

@ -251,7 +251,7 @@ class ContainerController(BaseStorageServer):
self.sync_store.update_sync_store(broker) self.sync_store.update_sync_store(broker)
except Exception: except Exception:
self.logger.exception('Failed to update sync_store %s during %s' % self.logger.exception('Failed to update sync_store %s during %s' %
broker.db_file, method) (broker.db_file, method))
@public @public
@timing_stats() @timing_stats()