From 8b289ea6c32277a2f474dda925aa261296a4cde4 Mon Sep 17 00:00:00 2001 From: Olaf Mandel Date: Sat, 2 Sep 2017 22:24:06 -0700 Subject: 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 Signed-off-by: David Reyna Signed-off-by: Richard Purdie --- bitbake/lib/toaster/bldcontrol/localhostbecontroller.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'bitbake') 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): 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 -- cgit v1.2.3-54-g00ecf