From: Paul Eggleton Date: Mon, 16 Mar 2015 10:35:10 +0000 (+0000) Subject: bitbake-layers: use stdout instead of stderr for logging X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=e96fc0ccfc9f5be2c41c9733c92dc81df3df5065;p=thirdparty%2Fopenembedded%2Fopenembedded-core-contrib.git bitbake-layers: use stdout instead of stderr for logging We use logger.plain() to produce actual output which needs to go to stdout. We could use more advanced filtering (and probably should in future) but for the moment let's just fix the regression. Fixes [YOCTO #7458]. Signed-off-by: Paul Eggleton Signed-off-by: Richard Purdie --- diff --git a/bin/bitbake-layers b/bin/bitbake-layers index 89662c7f916..c1c65aaa15b 100755 --- a/bin/bitbake-layers +++ b/bin/bitbake-layers @@ -52,7 +52,7 @@ def logger_create(name, output=sys.stderr): logger.setLevel(logging.INFO) return logger -logger = logger_create('bitbake-layers') +logger = logger_create('bitbake-layers', sys.stdout) class Commands():