diff options
author | Richard Purdie <richard.purdie@linuxfoundation.org> | 2017-07-30 15:58:01 +0100 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2017-07-31 15:13:53 +0100 |
commit | 3f71378fdeed0d5f18eb7c58776fd313a0ab8fe3 (patch) | |
tree | 59915de5f3cfda349bc030156c88c40527d8941c /bitbake/lib | |
parent | 6986198da9929d017bf2ff259025c38f7bdad68f (diff) | |
download | poky-3f71378fdeed0d5f18eb7c58776fd313a0ab8fe3.tar.gz |
bitbake: runqueue: Tweak debug message to make it more readable/diffable
Having this as one huge long line isn't easy to manipulate, split it into
multiple lines for ease of debugging issues.
(Bitbake rev: 5753fe81194f75fbcf4ccdc733cc585d02794cb1)
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'bitbake/lib')
-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 7dd964d1c4..e1a15af260 100644 --- a/bitbake/lib/bb/runqueue.py +++ b/bitbake/lib/bb/runqueue.py | |||
@@ -2372,7 +2372,7 @@ class RunQueueExecuteScenequeue(RunQueueExecute): | |||
2372 | self.rq.scenequeue_covered = self.scenequeue_covered | 2372 | self.rq.scenequeue_covered = self.scenequeue_covered |
2373 | self.rq.scenequeue_notcovered = self.scenequeue_notcovered | 2373 | self.rq.scenequeue_notcovered = self.scenequeue_notcovered |
2374 | 2374 | ||
2375 | logger.debug(1, 'We can skip tasks %s', sorted(self.rq.scenequeue_covered)) | 2375 | logger.debug(1, 'We can skip tasks %s', "\n".join(sorted(self.rq.scenequeue_covered))) |
2376 | 2376 | ||
2377 | self.rq.state = runQueueRunInit | 2377 | self.rq.state = runQueueRunInit |
2378 | 2378 | ||