summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--bitbake/lib/bb/runqueue.py1
-rw-r--r--meta/classes/sstate.bbclass8
2 files changed, 5 insertions, 4 deletions
diff --git a/bitbake/lib/bb/runqueue.py b/bitbake/lib/bb/runqueue.py
index 10511a09dc1..dac1ff97f89 100644
--- a/bitbake/lib/bb/runqueue.py
+++ b/bitbake/lib/bb/runqueue.py
@@ -1205,6 +1205,7 @@ class RunQueueData:
bb.parse.siggen.prep_taskhash(tid, self.runtaskentries[tid].depends, dc)
self.runtaskentries[tid].hash = bb.parse.siggen.get_taskhash(tid, self.runtaskentries[tid].depends, dc)
self.runtaskentries[tid].unihash = bb.parse.siggen.get_unihash(tid)
+ bb.warn("%s: %s %s" % (tid, self.runtaskentries[tid].hash, self.runtaskentries[tid].unihash))
def dump_data(self):
"""
diff --git a/meta/classes/sstate.bbclass b/meta/classes/sstate.bbclass
index 860122a0cdf..21fc2b7db43 100644
--- a/meta/classes/sstate.bbclass
+++ b/meta/classes/sstate.bbclass
@@ -932,13 +932,13 @@ def sstate_checkhashes(sq_data, d, siginfo=False, currentcount=0, summary=True,
sstatefile = d.expand("${SSTATE_DIR}/" + extrapath + generate_sstatefn(spec, gethash(tid), tname, siginfo, d))
if os.path.exists(sstatefile):
- bb.debug(2, "SState: Found valid sstate file %s" % sstatefile)
+ bb.warn("SState: Found valid sstate file %s" % sstatefile)
found.add(tid)
foundLocal.add(tid)
continue
else:
missed.add(tid)
- bb.debug(2, "SState: Looked for but didn't find file %s" % sstatefile)
+ bb.warn("SState: Looked for but didn't find file %s" % sstatefile)
mirrors = d.getVar("SSTATE_MIRRORS")
if mirrors:
@@ -972,13 +972,13 @@ def sstate_checkhashes(sq_data, d, siginfo=False, currentcount=0, summary=True,
localdata2 = bb.data.createCopy(localdata)
srcuri = "file://" + sstatefile
localdata.setVar('SRC_URI', srcuri)
- bb.debug(2, "SState: Attempting to fetch %s" % srcuri)
+ bb.warn("SState: Attempting to fetch %s" % srcuri)
try:
fetcher = bb.fetch2.Fetch(srcuri.split(), localdata2,
connection_cache=thread_worker.connection_cache)
fetcher.checkstatus()
- bb.debug(2, "SState: Successful fetch test for %s" % srcuri)
+ bb.warn("SState: Successful fetch test for %s" % srcuri)
found.add(tid)
foundNet.add(tid)
if tid in missed: