From 9a6c6b55713f896609b7127560ae99fabbf759e7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ond=C5=99ej=20Nov=C3=BD?= Date: Thu, 18 Feb 2016 17:38:42 +0100 Subject: [PATCH] Fixed log format in object auditor Change-Id: I218e08446c5ffda2db7c774ec8bb9d28ce9f63e7 --- swift/obj/auditor.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/swift/obj/auditor.py b/swift/obj/auditor.py index de1199ea52..8a5239200a 100644 --- a/swift/obj/auditor.py +++ b/swift/obj/auditor.py @@ -108,8 +108,8 @@ class AuditorWorker(object): self.logger.info(_( 'Object audit (%(type)s). ' 'Since %(start_time)s: Locally: %(passes)d passed, ' - '%(quars)d quarantined, %(errors)d errors ' - 'files/sec: %(frate).2f , bytes/sec: %(brate).2f, ' + '%(quars)d quarantined, %(errors)d errors, ' + 'files/sec: %(frate).2f, bytes/sec: %(brate).2f, ' 'Total time: %(total).2f, Auditing time: %(audit).2f, ' 'Rate: %(audit_rate).2f') % { 'type': '%s%s' % (self.auditor_type, description),