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