]> git.ipfire.org Git - thirdparty/openembedded/openembedded-core-contrib.git/commitdiff
lib/bb/cache.py: Change debugging note to a debug message
authorMark Hatle <mark.hatle@windriver.com>
Wed, 29 May 2013 04:01:18 +0000 (23:01 -0500)
committerRichard Purdie <richard.purdie@linuxfoundation.org>
Fri, 31 May 2013 07:25:08 +0000 (08:25 +0100)
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@windriver.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
lib/bb/cache.py

index c92ba356419e3f4a9094a120a334198a198e17d5..9e89742235e0f1d324d5dd90b867d47f49888a0c 100644 (file)
@@ -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