Skip to content
Snippets Groups Projects
Commit 73ac472e authored by SamYaple's avatar SamYaple
Browse files

Fix logging params

Something was missed during the logging update

TrivialFix

Change-Id: Ic611b7a0e2a53725b1a3a76aba56faeca5f68dfa
parent e8ad7488
No related branches found
No related tags found
No related merge requests found
...@@ -571,7 +571,7 @@ class KollaWorker(object): ...@@ -571,7 +571,7 @@ class KollaWorker(object):
LOG.info("Images that failed to build") LOG.info("Images that failed to build")
LOG.info("===========================") LOG.info("===========================")
for name, status in six.iteritems(self.image_statuses_bad): for name, status in six.iteritems(self.image_statuses_bad):
LOG.error('{}\r\t\t\t Failed with status: %s', name, status) LOG.error('%s\r\t\t\t Failed with status: %s', name, status)
if self.image_statuses_unmatched: if self.image_statuses_unmatched:
LOG.debug("Images not matched for build by regex") LOG.debug("Images not matched for build by regex")
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment