summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorOlaf Mandel <o.mandel@menlosystems.com>2017-09-02 22:24:06 -0700
committerRichard Purdie <richard.purdie@linuxfoundation.org>2017-09-21 16:50:10 +0100
commit00fb88c9c969ae9b38004adf236c057628b3227d (patch)
tree7dd267d6f8273885190f09b74b299f3325142426
parenta3063e3c7e3ae21bcebe23fcf0a4fda559252fb5 (diff)
downloadbitbake-00fb88c9c969ae9b38004adf236c057628b3227d.tar.gz
toaster: debug message for lists layers missing separators
One of the debug messages during build contains a list of all layers but without spaces or other separators between them. Use pformat instead. [YOCTO #12014] Signed-off-by: Olaf Mandel <o.mandel@menlosystems.com> Signed-off-by: David Reyna <David.Reyna@windriver.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
-rw-r--r--lib/toaster/bldcontrol/localhostbecontroller.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/toaster/bldcontrol/localhostbecontroller.py b/lib/toaster/bldcontrol/localhostbecontroller.py
index 62e62fe19..38731ef9f 100644
--- a/lib/toaster/bldcontrol/localhostbecontroller.py
+++ b/lib/toaster/bldcontrol/localhostbecontroller.py
@@ -217,7 +217,7 @@ class LocalhostBEController(BuildEnvironmentController):
continue # not a custom recipe, skip
layerlist.extend(nongitlayerlist)
- logger.debug("\n\nset layers gives this list \n %s" % ''.join(layerlist))
+ logger.debug("\n\nset layers gives this list %s" % pformat(layerlist))
self.islayerset = True
return layerlist