aboutsummaryrefslogtreecommitdiffstats
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-04 17:51:06 +0100
commit9fe38f94b54a8644ac6f493c49e63dd6da5bfbdf (patch)
tree06faeda5bc529ab66302deff5e8840f0bfb3c030
parent1f1cc1edb21aeec684ef7323554794b33d84d414 (diff)
downloadbitbake-contrib-9fe38f94b54a8644ac6f493c49e63dd6da5bfbdf.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 6142f7e00..a93cf40bd 100644
--- a/lib/toaster/bldcontrol/localhostbecontroller.py
+++ b/lib/toaster/bldcontrol/localhostbecontroller.py
@@ -230,7 +230,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