diff options
author | Joshua Watt <jpewhacker@gmail.com> | 2020-03-11 18:28:47 -0500 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2020-03-13 11:29:23 +0000 |
commit | 5766cf50b04f52cb782b0a3eed43cc429e488d1b (patch) | |
tree | af1a14a0689a239525332bf0bdd3c8cb380d6ee9 /bitbake/lib/bb | |
parent | 361ea84d5683000397f2deeb05b4ffdba624df83 (diff) | |
download | poky-5766cf50b04f52cb782b0a3eed43cc429e488d1b.tar.gz |
bitbake: runqueue: Lower setscene complete logging level
Lowers the level of the log message when setscene tasks have completed.
This message can occur multiple times when hash equivalence is enabled,
since the runqueue switches between executing setscene tasks and normal
tasks. Since this is primarily of use when debugging hash equivalence,
use the hash equivalence logger at VERBOSE level.
[YOCTO #13813]
(Bitbake rev: 7dd5b3900622008ff34ec70d71c6e994f460a46f)
Signed-off-by: Joshua Watt <JPEWhacker@gmail.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'bitbake/lib/bb')
-rw-r--r-- | bitbake/lib/bb/runqueue.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bitbake/lib/bb/runqueue.py b/bitbake/lib/bb/runqueue.py index cef9b0fbbf..16f076f3b1 100644 --- a/bitbake/lib/bb/runqueue.py +++ b/bitbake/lib/bb/runqueue.py | |||
@@ -2059,7 +2059,7 @@ class RunQueueExecute: | |||
2059 | self.update_holdofftasks() | 2059 | self.update_holdofftasks() |
2060 | 2060 | ||
2061 | if not self.sq_live and not self.sqdone and not self.sq_deferred and not self.updated_taskhash_queue and not self.holdoff_tasks: | 2061 | if not self.sq_live and not self.sqdone and not self.sq_deferred and not self.updated_taskhash_queue and not self.holdoff_tasks: |
2062 | logger.info("Setscene tasks completed") | 2062 | hashequiv_logger.verbose("Setscene tasks completed") |
2063 | 2063 | ||
2064 | err = self.summarise_scenequeue_errors() | 2064 | err = self.summarise_scenequeue_errors() |
2065 | if err: | 2065 | if err: |