[gnome-continuous-yocto/gnomeostree-3.28-rocko: 7055/8267] bitbake: runqueue: Tweak debug message to make it more readable/diffable



commit 3f71378fdeed0d5f18eb7c58776fd313a0ab8fe3
Author: Richard Purdie <richard purdie linuxfoundation org>
Date:   Sun Jul 30 15:58:01 2017 +0100

    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>

 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 7dd964d..e1a15af 100644
--- a/bitbake/lib/bb/runqueue.py
+++ b/bitbake/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
 


[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]