From bca343b94a8ce555f3f697e610b735704486f421 Mon Sep 17 00:00:00 2001 From: Richard Purdie Date: Wed, 8 Jun 2011 20:30:46 +0100 Subject: runqueue.py: Add notification of setscene tasks (should be in knotty) Signed-off-by: Richard Purdie --- lib/bb/runqueue.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/lib/bb/runqueue.py b/lib/bb/runqueue.py index 15d3d004a..86744fbae 100644 --- a/lib/bb/runqueue.py +++ b/lib/bb/runqueue.py @@ -1614,6 +1614,9 @@ class RunQueueExecuteScenequeue(RunQueueExecute): self.task_skip(task) return True + logger.info("Running setscene task %d of %d (%s:%s)" % (self.stats.completed + self.stats.active + self.stats.failed + 1, + self.stats.total, fn, taskname)) + pid, pipein, pipeout = self.fork_off_task(fn, realtask, taskname) self.build_pids[pid] = task -- cgit 1.2.3-korg