From 229b6630af72f2914d75ab6b0ba081b5feb25172 Mon Sep 17 00:00:00 2001 From: Richard Purdie Date: Tue, 12 Oct 2010 17:46:47 +0100 Subject: bitbake-runtask: Ensure logging settings take effect in the worker process (and pass verbose setting) Signed-off-by: Richard Purdie --- bitbake/bin/bitbake-runtask | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) (limited to 'bitbake/bin') diff --git a/bitbake/bin/bitbake-runtask b/bitbake/bin/bitbake-runtask index 3b37853..88101a5 100755 --- a/bitbake/bin/bitbake-runtask +++ b/bitbake/bin/bitbake-runtask @@ -79,8 +79,11 @@ hashdata = p.load() debug = hashdata["msg-debug"] debug_domains = hashdata["msg-debug-domains"] -cooker = bb.cooker.BBCooker(BBConfiguration(debug, debug_domains), None) +verbose = hashdata["verbose"] + +bb.utils.init_logger(bb.msg, verbose, debug, debug_domains) +cooker = bb.cooker.BBCooker(BBConfiguration(debug, debug_domains), None) cooker.parseConfiguration() cooker.bb_cache = bb.cache.init(cooker) -- cgit v1.1