summaryrefslogtreecommitdiffstats
path: root/bitbake
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:51:07 +0100
commit9566ec3c3a317c3fd9efe92d0ce4dad741864eda (patch)
tree1073a8ea80a8436c2f3b525de7b294e00c491fca /bitbake
parentf744d7c496ae5e37ec63128e4a55e5c2c57f38ec (diff)
downloadpoky-9566ec3c3a317c3fd9efe92d0ce4dad741864eda.tar.gz
bitbake: 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] (Bitbake rev: 00fb88c9c969ae9b38004adf236c057628b3227d) 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>
Diffstat (limited to 'bitbake')
-rw-r--r--bitbake/lib/toaster/bldcontrol/localhostbecontroller.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/bitbake/lib/toaster/bldcontrol/localhostbecontroller.py b/bitbake/lib/toaster/bldcontrol/localhostbecontroller.py
index 62e62fe19e..38731ef9f0 100644
--- a/bitbake/lib/toaster/bldcontrol/localhostbecontroller.py
+++ b/bitbake/lib/toaster/bldcontrol/localhostbecontroller.py
@@ -217,7 +217,7 @@ class LocalhostBEController(BuildEnvironmentController):
217 continue # not a custom recipe, skip 217 continue # not a custom recipe, skip
218 218
219 layerlist.extend(nongitlayerlist) 219 layerlist.extend(nongitlayerlist)
220 logger.debug("\n\nset layers gives this list \n %s" % ''.join(layerlist)) 220 logger.debug("\n\nset layers gives this list %s" % pformat(layerlist))
221 self.islayerset = True 221 self.islayerset = True
222 return layerlist 222 return layerlist
223 223