summaryrefslogtreecommitdiffstats
path: root/bitbake
diff options
context:
space:
mode:
authorPaul Eggleton <paul.eggleton@linux.intel.com>2015-03-16 10:35:10 +0000
committerRichard Purdie <richard.purdie@linuxfoundation.org>2015-03-16 17:41:29 +0000
commit313ad2a5cc30269041acf0450e1dd2f467f37237 (patch)
treed6098064d7ed20bdc727a0e88acffb6c49ceeed1 /bitbake
parent855fc21ae99899d54e286ee18ea56b2299694bf9 (diff)
downloadast2050-yocto-poky-313ad2a5cc30269041acf0450e1dd2f467f37237.zip
ast2050-yocto-poky-313ad2a5cc30269041acf0450e1dd2f467f37237.tar.gz
bitbake: 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]. (Bitbake rev: e96fc0ccfc9f5be2c41c9733c92dc81df3df5065) Signed-off-by: Paul Eggleton <paul.eggleton@linux.intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'bitbake')
-rwxr-xr-xbitbake/bin/bitbake-layers2
1 files changed, 1 insertions, 1 deletions
diff --git a/bitbake/bin/bitbake-layers b/bitbake/bin/bitbake-layers
index 89662c7..c1c65aa 100755
--- a/bitbake/bin/bitbake-layers
+++ b/bitbake/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():
OpenPOWER on IntegriCloud