From 7f837eb05f924996c89283ec8b74e46f6b5cd343 Mon Sep 17 00:00:00 2001 From: Richard Purdie Date: Mon, 21 Nov 2011 14:40:37 +0000 Subject: bitbake/runqueue: Improve the setscene logging When debugging setscene problems it was found that some extra debug messages were useful. This patch adds them. (Bitbake rev: cff2c258b77fde01d530a5923e553e6111b15eb5) Signed-off-by: Richard Purdie --- bitbake/lib/bb/runqueue.py | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/bitbake/lib/bb/runqueue.py b/bitbake/lib/bb/runqueue.py index 5a5164b7b5..86744fbaef 100644 --- a/bitbake/lib/bb/runqueue.py +++ b/bitbake/lib/bb/runqueue.py @@ -1209,10 +1209,14 @@ class RunQueueExecuteTasks(RunQueueExecute): for task in xrange(self.stats.total): if task in self.rq.scenequeue_covered: continue + logger.debug(1, 'Considering %s (%s): %s' % (task, self.rqdata.get_user_idstring(task), str(self.rqdata.runq_revdeps[task]))) + if len(self.rqdata.runq_revdeps[task]) > 0 and self.rqdata.runq_revdeps[task].issubset(self.rq.scenequeue_covered): ok = True for revdep in self.rqdata.runq_revdeps[task]: if self.rqdata.runq_fnid[task] != self.rqdata.runq_fnid[revdep]: + logger.debug(1, 'Found "bad" dep %s (%s) for %s (%s)' % (revdep, self.rqdata.get_user_idstring(revdep), task, self.rqdata.get_user_idstring(task))) + ok = False break if ok: -- cgit v1.2.3-54-g00ecf