From d6fd6d8e04caf952018909e06113becf9f081930 Mon Sep 17 00:00:00 2001 From: Kurt Taylor Date: Mon, 22 May 2017 08:57:12 -0500 Subject: [PATCH] Fix inconsistent build task attempt logging Change-Id: I5fee4782202fc8e5094b2be05e88f70706596078 --- kolla/image/build.py | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) diff --git a/kolla/image/build.py b/kolla/image/build.py index 0d7e7ef820..1da8c970e1 100755 --- a/kolla/image/build.py +++ b/kolla/image/build.py @@ -498,12 +498,8 @@ class WorkerThread(threading.Thread): for attempt in six.moves.range(self.conf.retries + 1): if self.should_stop: break - if attempt > 0: - LOG.info("Attempting to run task %s for the %s time", - task.name, attempt + 1) - else: - LOG.info("Attempting to run task %s for the first" - " time", task.name) + LOG.info("Attempt number: %s to run task: %s ", + attempt + 1, task.name) try: task.run() if task.success: