summaryrefslogtreecommitdiffstats
path: root/bitbake/bin/bitbake-layers
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/bin/bitbake-layers
parent855fc21ae99899d54e286ee18ea56b2299694bf9 (diff)
downloadpoky-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/bin/bitbake-layers')
-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 89662c7f91..c1c65aaa15 100755
--- a/bitbake/bin/bitbake-layers
+++ b/bitbake/bin/bitbake-layers
@@ -52,7 +52,7 @@ def logger_create(name, output=sys.stderr):
52 logger.setLevel(logging.INFO) 52 logger.setLevel(logging.INFO)
53 return logger 53 return logger
54 54
55logger = logger_create('bitbake-layers') 55logger = logger_create('bitbake-layers', sys.stdout)
56 56
57 57
58class Commands(): 58class Commands():