]> git.ipfire.org Git - thirdparty/openembedded/openembedded-core-contrib.git/commitdiff
bitbake-layers: use stdout instead of stderr for logging
authorPaul Eggleton <paul.eggleton@linux.intel.com>
Mon, 16 Mar 2015 10:35:10 +0000 (10:35 +0000)
committerRichard Purdie <richard.purdie@linuxfoundation.org>
Mon, 16 Mar 2015 17:39:48 +0000 (17:39 +0000)
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 <paul.eggleton@linux.intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
bin/bitbake-layers

index 89662c7f916f3638afe73fd0d8355a8b85c604d8..c1c65aaa15b026ff8c2fa2d80263cacd58a4eb7c 100755 (executable)
@@ -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():