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-05 15:00:49 +0100
commit8b289ea6c32277a2f474dda925aa261296a4cde4 (patch)
tree242aa83920b48d7e59a9bd7f822a51e23959c835 /bitbake
parent75e0fb34a19c10c24773b2be259fafd913540c6e (diff)
downloadpoky-8b289ea6c32277a2f474dda925aa261296a4cde4.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: 9fe38f94b54a8644ac6f493c49e63dd6da5bfbdf) 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 6142f7e004..a93cf40bd6 100644
--- a/bitbake/lib/toaster/bldcontrol/localhostbecontroller.py
+++ b/bitbake/lib/toaster/bldcontrol/localhostbecontroller.py
@@ -230,7 +230,7 @@ class LocalhostBEController(BuildEnvironmentController):
230 continue # not a custom recipe, skip 230 continue # not a custom recipe, skip
231 231
232 layerlist.extend(nongitlayerlist) 232 layerlist.extend(nongitlayerlist)
233 logger.debug("\n\nset layers gives this list \n %s" % ''.join(layerlist)) 233 logger.debug("\n\nset layers gives this list %s" % pformat(layerlist))
234 self.islayerset = True 234 self.islayerset = True
235 return layerlist 235 return layerlist
236 236