[OE-core] [PATCH] sstate: change "stamp is not reachable, removing manifests" message from info to debug

Ross Burton ross.burton at intel.com
Tue Jan 5 12:32:45 UTC 2016


This code path has proven to work, so change the log level from info to debug so
it doesn't spam the log in normal use.

Signed-off-by: Ross Burton <ross.burton at intel.com>
---
 meta/classes/sstate.bbclass | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/meta/classes/sstate.bbclass b/meta/classes/sstate.bbclass
index 9bef212..9201146 100644
--- a/meta/classes/sstate.bbclass
+++ b/meta/classes/sstate.bbclass
@@ -952,7 +952,7 @@ python sstate_eventhandler2() {
                 if stamp not in stamps:
                     toremove.append(l)
                     if stamp not in seen:
-                        bb.note("Stamp %s is not reachable, removing related manifests" % stamp)
+                        bb.debug(2, "Stamp %s is not reachable, removing related manifests" % stamp)
                         seen.append(stamp)
         for r in toremove:
             (stamp, manifest, workdir) = r.split()
-- 
2.6.4




More information about the Openembedded-core mailing list