summaryrefslogtreecommitdiffstats
path: root/bitbake
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:40 +0100
commitb5255bb34d17017e38d264e4360b1b560b1fa5d2 (patch)
treedf3371ffff9d779cb6fa4ccd2cb6c78e6b8862c3 /bitbake
parent8144e16097fae49288d763d05476c892c46136c3 (diff)
downloadpoky-b5255bb34d17017e38d264e4360b1b560b1fa5d2.tar.gz
bitbake: 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. (Bitbake rev: 1965e5cbdfede18d7b7cb0218e0a5147c3f1c884) Signed-off-by: Mark Hatle <mark.hatle@windriver.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'bitbake')
-rw-r--r--bitbake/lib/bb/cache.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/bitbake/lib/bb/cache.py b/bitbake/lib/bb/cache.py
index c92ba35641..9e89742235 100644
--- a/bitbake/lib/bb/cache.py
+++ b/bitbake/lib/bb/cache.py
@@ -526,7 +526,7 @@ class Cache(object):
526 526
527 if appends != info_array[0].appends: 527 if appends != info_array[0].appends:
528 logger.debug(2, "Cache: appends for %s changed", fn) 528 logger.debug(2, "Cache: appends for %s changed", fn)
529 bb.note("%s to %s" % (str(appends), str(info_array[0].appends))) 529 logger.debug(2, "%s to %s" % (str(appends), str(info_array[0].appends)))
530 self.remove(fn) 530 self.remove(fn)
531 return False 531 return False
532 532