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>
logger.setLevel(logging.INFO)
return logger
-logger = logger_create('bitbake-layers')
+logger = logger_create('bitbake-layers', sys.stdout)
class Commands():