* [PATCH] sstate: change "stamp is not reachable, removing manifests" message from info to debug
@ 2016-01-05 12:32 Ross Burton
2016-01-05 19:15 ` Trevor Woerner
0 siblings, 1 reply; 2+ messages in thread
From: Ross Burton @ 2016-01-05 12:32 UTC (permalink / raw)
To: openembedded-core
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@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
^ permalink raw reply related [flat|nested] 2+ messages in thread
* Re: [PATCH] sstate: change "stamp is not reachable, removing manifests" message from info to debug
2016-01-05 12:32 [PATCH] sstate: change "stamp is not reachable, removing manifests" message from info to debug Ross Burton
@ 2016-01-05 19:15 ` Trevor Woerner
0 siblings, 0 replies; 2+ messages in thread
From: Trevor Woerner @ 2016-01-05 19:15 UTC (permalink / raw)
To: Ross Burton, openembedded-core
On 01/05/16 07:32, Ross Burton wrote:
> 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.
I liked having this as part of the regular processing. If I only update
my upstream repositories once a week (for example) my next "bitbake ..."
would show which packages had upgrades. It was a cheap way of doing an
image diff, if you will.
In order to keep those messages now I would have to enable debug, which
will generate quite a lot more information.
Yes, I know I could get the "image diff" functionality by enabling
buildhistory and going that route, but as I said above this was sort of
a "cheap" image diff for free ;-)
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2016-01-05 19:15 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2016-01-05 12:32 [PATCH] sstate: change "stamp is not reachable, removing manifests" message from info to debug Ross Burton
2016-01-05 19:15 ` Trevor Woerner
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox