aboutsummaryrefslogtreecommitdiffstats
path: root/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:39:48 +0000
commite96fc0ccfc9f5be2c41c9733c92dc81df3df5065 (patch)
tree04a209f877b938704c4c6703079c7008333c1f5e /bin/bitbake-layers
parentdee0ba94e39ea49c1e9261a5e8932356e3bb7c57 (diff)
downloadbitbake-e96fc0ccfc9f5be2c41c9733c92dc81df3df5065.tar.gz
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 <paul.eggleton@linux.intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'bin/bitbake-layers')
-rwxr-xr-xbin/bitbake-layers2
1 files changed, 1 insertions, 1 deletions
diff --git a/bin/bitbake-layers b/bin/bitbake-layers
index 89662c7f9..c1c65aaa1 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():