From: Mark Hatle Date: Wed, 29 May 2013 04:01:18 +0000 (-0500) Subject: bitbake: lib/bb/cache.py: Change debugging note to a debug message X-Git-Tag: rev_ivi_2015_02_04~12330 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=600786136f46338d0e82c25b27d9c2e3b949c1ea;p=scm%2Fbb%2Ftizen-distro.git 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 Signed-off-by: Richard Purdie --- diff --git a/bitbake/lib/bb/cache.py b/bitbake/lib/bb/cache.py index c92ba35..9e89742 100644 --- a/bitbake/lib/bb/cache.py +++ b/bitbake/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