Merge "Do not truncate the error messages"

This commit is contained in:
Jenkins 2016-01-06 01:33:48 +00:00 committed by Gerrit Code Review
commit eda2b56e3c
1 changed files with 1 additions and 1 deletions

View File

@ -510,7 +510,7 @@ class KollaWorker(object):
LOG.info("Images that failed to build")
LOG.info("===========================")
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:
LOG.debug("Images not matched for build by regex")