From ab2d1eeb4cad7ef8791954b36f8123cb35b8c000 Mon Sep 17 00:00:00 2001 From: Mikko Rapeli Date: Mon, 11 Nov 2024 13:16:02 +0000 Subject: [PATCH] uki.bbclass: fix debug print logging level Missing/unknown log level triggers a warning. Signed-off-by: Mikko Rapeli Signed-off-by: Richard Purdie --- meta/classes-recipe/uki.bbclass | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/meta/classes-recipe/uki.bbclass b/meta/classes-recipe/uki.bbclass index d4f25c7fd2c..441e4a7f8ea 100644 --- a/meta/classes-recipe/uki.bbclass +++ b/meta/classes-recipe/uki.bbclass @@ -189,7 +189,7 @@ python do_uki() { ukify_cmd += " %s" % (output) # Run the ukify command - bb.debug("uki: running command: %s" % (ukify_cmd)) + bb.debug(2, "uki: running command: %s" % (ukify_cmd)) bb.process.run(ukify_cmd, shell=True) } addtask uki after do_rootfs before do_deploy do_image_complete do_image_wic -- 2.47.3