From b10d275745720d63984c9143bd3d984842ab195a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Lubom=C3=ADr=20Sedl=C3=A1=C5=99?= Date: Wed, 15 Mar 2017 16:16:18 +0100 Subject: [PATCH] image-build: Print task ID on success MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Relates: #570 Signed-off-by: Lubomír Sedlář --- pungi/phases/image_build.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pungi/phases/image_build.py b/pungi/phases/image_build.py index 1327a0e8..9057360a 100644 --- a/pungi/phases/image_build.py +++ b/pungi/phases/image_build.py @@ -240,4 +240,4 @@ class CreateImageBuildThread(WorkerThread): setattr(img, 'deliverable', 'image-build') compose.im.add(variant=variant.uid, arch=image_info['arch'], image=img) - self.pool.log_info("[DONE ] %s" % msg) + self.pool.log_info("[DONE ] %s (task id: %s)" % (msg, output['task_id']))