diff options
author | Joshua Watt <JPEWhacker@gmail.com> | 2020-03-09 11:33:52 -0500 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2020-03-13 11:29:23 +0000 |
commit | 622ec78f7e3a58e2e1402b046345f52b68effe21 (patch) | |
tree | 945aeef975a5a9eca87efa348a4d5e036e09da50 /bitbake/lib/bb/runqueue.py | |
parent | 554894287ec8f3bd0612dddabee43213c12c3dc3 (diff) | |
download | poky-622ec78f7e3a58e2e1402b046345f52b68effe21.tar.gz |
bitbake: runqueue/siggen: Lower hash equivalence logging
Lowers the level at which hash equivalence messages are logged so as to
not annoy the majority of users. The autobuilder can use a custom
logging configuration to log these to a file for debugging (see
contrib/autobuilderlog.json)
[YOCTO #13813]
(Bitbake rev: 2ddb649ea31afe052f08e3969e36abf6fb515bc2)
Signed-off-by: Joshua Watt <JPEWhacker@gmail.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
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 | ||