summaryrefslogtreecommitdiffstats
path: root/lib/bb/cache.py
diff options
context:
space:
mode:
authorMark Hatle <mark.hatle@windriver.com>2013-05-28 23:01:18 -0500
committerRichard Purdie <richard.purdie@linuxfoundation.org>2013-05-31 08:25:08 +0100
commit1965e5cbdfede18d7b7cb0218e0a5147c3f1c884 (patch)
tree69de9a17b92fea64c2cabc0fe8ad2059db8532bd /lib/bb/cache.py
parente2cc22fb8b2e97b068b6037540c746ecb1856de6 (diff)
downloadbitbake-contrib-1965e5cbdfede18d7b7cb0218e0a5147c3f1c884.tar.gz
lib/bb/cache.py: Change debugging note to a debug message
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>
Diffstat (limited to 'lib/bb/cache.py')
-rw-r--r--lib/bb/cache.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/bb/cache.py b/lib/bb/cache.py
index c92ba3564..9e8974223 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