From 9566ec3c3a317c3fd9efe92d0ce4dad741864eda Mon Sep 17 00:00:00 2001 From: Olaf Mandel Date: Sat, 2 Sep 2017 22:24:06 -0700 Subject: [PATCH] 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 Signed-off-by: David Reyna Signed-off-by: Richard Purdie --- bitbake/lib/toaster/bldcontrol/localhostbecontroller.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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): 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