From patchwork Thu Jan 5 13:11:52 2012 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: [bitbake-devel] Richard Purdie : bitbake/runqueue: Improve the setscene logging Date: Thu, 05 Jan 2012 13:11:52 -0000 From: git@git.openembedded.org X-Patchwork-Id: 18435 Message-Id: <20120105131152.EA21A10333@opal> To: bitbake-devel@lists.openembedded.org Module: bitbake.git Branch: master Commit: cff2c258b77fde01d530a5923e553e6111b15eb5 URL: http://git.openembedded.org/?p=bitbake.git&a=commit;h=cff2c258b77fde01d530a5923e553e6111b15eb5 Author: Richard Purdie Date: Mon Nov 21 14:40:37 2011 +0000 bitbake/runqueue: Improve the setscene logging When debugging setscene problems it was found that some extra debug messages were useful. This patch adds them. Signed-off-by: Richard Purdie --- lib/bb/runqueue.py | 4 ++++ 1 files changed, 4 insertions(+), 0 deletions(-) diff --git a/lib/bb/runqueue.py b/lib/bb/runqueue.py index f7e7ace..0e83d05 100644 --- a/lib/bb/runqueue.py +++ b/lib/bb/runqueue.py @@ -1208,10 +1208,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: