[oe-commits] [bitbake] 01/04: runqueue: Tweak debug message to make it more readable/diffable

git at git.openembedded.org git at git.openembedded.org
Sun Jul 30 15:24:48 UTC 2017


This is an automated email from the git hooks/post-receive script.

rpurdie pushed a commit to branch master-next
in repository bitbake.

commit 5753fe81194f75fbcf4ccdc733cc585d02794cb1
Author: Richard Purdie <richard.purdie at linuxfoundation.org>
AuthorDate: Sun Jul 30 15:58:01 2017 +0100

    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.
    
    Signed-off-by: Richard Purdie <richard.purdie at linuxfoundation.org>
---
 lib/bb/runqueue.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/lib/bb/runqueue.py b/lib/bb/runqueue.py
index 7dd964d..e1a15af 100644
--- a/lib/bb/runqueue.py
+++ b/lib/bb/runqueue.py
@@ -2372,7 +2372,7 @@ class RunQueueExecuteScenequeue(RunQueueExecute):
         self.rq.scenequeue_covered = self.scenequeue_covered
         self.rq.scenequeue_notcovered = self.scenequeue_notcovered
 
-        logger.debug(1, 'We can skip tasks %s', sorted(self.rq.scenequeue_covered))
+        logger.debug(1, 'We can skip tasks %s', "\n".join(sorted(self.rq.scenequeue_covered)))
 
         self.rq.state = runQueueRunInit
 

-- 
To stop receiving notification emails like this one, please contact
the administrator of this repository.


More information about the Openembedded-commits mailing list