[bitbake-devel] [PATCH] lib/bb/cache.py: Change debugging note to a debug message

Mark Hatle mark.hatle at windriver.com
Wed May 29 04:01:18 UTC 2013


Some apparently debugging was left in in a previous commit.  This caused
bitbake to return a list of bbappends when things changed from the cache.

Make this a proper debug message.

Signed-off-by: Mark Hatle <mark.hatle at windriver.com>
---
 lib/bb/cache.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/lib/bb/cache.py b/lib/bb/cache.py
index c92ba35..9e89742 100644
--- a/lib/bb/cache.py
+++ b/lib/bb/cache.py
@@ -526,7 +526,7 @@ class Cache(object):
 
         if appends != info_array[0].appends:
             logger.debug(2, "Cache: appends for %s changed", fn)
-            bb.note("%s to %s" % (str(appends), str(info_array[0].appends)))
+            logger.debug(2, "%s to %s" % (str(appends), str(info_array[0].appends)))
             self.remove(fn)
             return False
 
-- 
1.8.1.2.545.g2f19ada




More information about the bitbake-devel mailing list