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>2014-02-17 14:44:37 +0000
commit90547d53a1b4ab90b1c8b3dd81988a8d0d5759e1 (patch)
treec664c1b217bf9ffc5506048e6bb0467d1a845e46 /bitbake
parent59e8d60e250d8dea3fd2fc48f42cf17cadbb3778 (diff)
downloadpoky-90547d53a1b4ab90b1c8b3dd81988a8d0d5759e1.tar.gz
bitbake: 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 master rev: 1965e5cbdfede18d7b7cb0218e0a5147c3f1c884) (Bitbake rev: 586adebdafdd4d11e5a277f72206875ae8828864) 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 1c975b62e1..ebb6917256 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