From 986452c410a958e339f31f8c05461c18a1a15eb5 Mon Sep 17 00:00:00 2001 From: Aníbal Limón Date: Mon, 5 Jun 2017 10:46:03 -0500 Subject: scripts/oe-{self,}test: Logger change default stream to stdout MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit By default python logging module uses stderr as default stream for output but is unix-like to use stdout instead, so change it. Signed-off-by: Aníbal Limón --- scripts/oe-selftest | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'scripts/oe-selftest') diff --git a/scripts/oe-selftest b/scripts/oe-selftest index b200acee13..1bf860a415 100755 --- a/scripts/oe-selftest +++ b/scripts/oe-selftest @@ -43,7 +43,7 @@ scriptpath.add_bitbake_lib_path() from oeqa.utils import load_test_components from oeqa.core.exception import OEQAPreRun -logger = scriptutils.logger_create('oe-selftest') +logger = scriptutils.logger_create('oe-selftest', stream=sys.stdout) def main(): description = "Script that runs unit tests against bitbake and other Yocto related tools. The goal is to validate tools functionality and metadata integrity. Refer to https://wiki.yoctoproject.org/wiki/Oe-selftest for more information." -- cgit 1.2.3-korg