From d56c8042d8d58e96c1e2802432e3b02699a126a2 Mon Sep 17 00:00:00 2001 From: Wanlong Gao Date: Tue, 5 Jan 2016 20:46:13 +0800 Subject: [PATCH] Do not truncate the error messages Do not truncate the error messages of build failure images. TrivialFix Change-Id: I4f2da78c57c8d919beba84a10357312bfc66e88c Closes-Bug: #1531152 --- kolla/cmd/build.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/kolla/cmd/build.py b/kolla/cmd/build.py index 7deb01891d..3d1f7b9e62 100755 --- a/kolla/cmd/build.py +++ b/kolla/cmd/build.py @@ -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")