Skip to content
Snippets Groups Projects
Commit eda2b56e authored by Jenkins's avatar Jenkins Committed by Gerrit Code Review
Browse files

Merge "Do not truncate the error messages"

parents 526c5a9e d56c8042
No related branches found
No related tags found
No related merge requests found
...@@ -510,7 +510,7 @@ class KollaWorker(object): ...@@ -510,7 +510,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('%s\r\t\t\t Failed with status: %s', name, status) LOG.error('%s 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