[bitbake-devel] Richard Purdie : bitbake/runqueue: Improve the setscene logging

git at git.openembedded.org git at git.openembedded.org
Thu Jan 5 13:11:52 UTC 2012


Module: bitbake.git
Branch: master
Commit: cff2c258b77fde01d530a5923e553e6111b15eb5
URL:    http://git.openembedded.org/?p=bitbake.git&a=commit;h=cff2c258b77fde01d530a5923e553e6111b15eb5

Author: Richard Purdie <richard.purdie at linuxfoundation.org>
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 <richard.purdie at linuxfoundation.org>

---

 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:





More information about the bitbake-devel mailing list