diff options
Diffstat (limited to 'bitbake/lib/bb/runqueue.py')
-rw-r--r-- | bitbake/lib/bb/runqueue.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/bitbake/lib/bb/runqueue.py b/bitbake/lib/bb/runqueue.py index e84890b8b7..cef9b0fbbf 100644 --- a/bitbake/lib/bb/runqueue.py +++ b/bitbake/lib/bb/runqueue.py | |||
@@ -2264,7 +2264,7 @@ class RunQueueExecute: | |||
2264 | self.updated_taskhash_queue.remove((tid, unihash)) | 2264 | self.updated_taskhash_queue.remove((tid, unihash)) |
2265 | 2265 | ||
2266 | if unihash != self.rqdata.runtaskentries[tid].unihash: | 2266 | if unihash != self.rqdata.runtaskentries[tid].unihash: |
2267 | hashequiv_logger.info("Task %s unihash changed to %s" % (tid, unihash)) | 2267 | hashequiv_logger.verbose("Task %s unihash changed to %s" % (tid, unihash)) |
2268 | self.rqdata.runtaskentries[tid].unihash = unihash | 2268 | self.rqdata.runtaskentries[tid].unihash = unihash |
2269 | bb.parse.siggen.set_unihash(tid, unihash) | 2269 | bb.parse.siggen.set_unihash(tid, unihash) |
2270 | toprocess.add(tid) | 2270 | toprocess.add(tid) |
@@ -2309,7 +2309,7 @@ class RunQueueExecute: | |||
2309 | elif tid in self.scenequeue_covered or tid in self.sq_live: | 2309 | elif tid in self.scenequeue_covered or tid in self.sq_live: |
2310 | # Already ran this setscene task or it running. Report the new taskhash | 2310 | # Already ran this setscene task or it running. Report the new taskhash |
2311 | bb.parse.siggen.report_unihash_equiv(tid, newhash, origuni, newuni, self.rqdata.dataCaches) | 2311 | bb.parse.siggen.report_unihash_equiv(tid, newhash, origuni, newuni, self.rqdata.dataCaches) |
2312 | hashequiv_logger.info("Already covered setscene for %s so ignoring rehash (remap)" % (tid)) | 2312 | hashequiv_logger.verbose("Already covered setscene for %s so ignoring rehash (remap)" % (tid)) |
2313 | remapped = True | 2313 | remapped = True |
2314 | 2314 | ||
2315 | if not remapped: | 2315 | if not remapped: |
@@ -2410,7 +2410,7 @@ class RunQueueExecute: | |||
2410 | 2410 | ||
2411 | for (tid, harddepfail, origvalid) in update_tasks: | 2411 | for (tid, harddepfail, origvalid) in update_tasks: |
2412 | if tid in self.sqdata.valid and not origvalid: | 2412 | if tid in self.sqdata.valid and not origvalid: |
2413 | hashequiv_logger.info("Setscene task %s became valid" % tid) | 2413 | hashequiv_logger.verbose("Setscene task %s became valid" % tid) |
2414 | if harddepfail: | 2414 | if harddepfail: |
2415 | self.sq_task_failoutright(tid) | 2415 | self.sq_task_failoutright(tid) |
2416 | 2416 | ||