Do not truncate the error messages

Do not truncate the error messages of build failure images.

TrivialFix
Change-Id: I4f2da78c57c8d919beba84a10357312bfc66e88c
Closes-Bug: #1531152
This commit is contained in:
Wanlong Gao 2016-01-05 20:46:13 +08:00
parent 9f74f50969
commit d56c8042d8
1 changed files with 1 additions and 1 deletions

View File

@ -509,7 +509,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")