From: Markus Lehtonen Date: Tue, 16 Aug 2016 09:15:59 +0000 (+0300) Subject: oe-build-perf-test: set-up file logging as early as possible X-Git-Tag: uninative-1.4~540 X-Git-Url: https://code.ossystems.io/gitweb?a=commitdiff_plain;h=9ce6e20ce239067896dc65f09e3fef1173293065;p=openembedded-core.git oe-build-perf-test: set-up file logging as early as possible So that the log file would not miss any records. Signed-off-by: Markus Lehtonen Signed-off-by: Ross Burton --- diff --git a/scripts/oe-build-perf-test b/scripts/oe-build-perf-test index 4e6d738374..07f2a1fde5 100755 --- a/scripts/oe-build-perf-test +++ b/scripts/oe-build-perf-test @@ -112,6 +112,10 @@ def main(argv=None): """Script entry point""" args = parse_args(argv) + # Set-up log file + out_dir = args.out_dir.format(date=datetime.now().strftime('%Y%m%d%H%M%S')) + setup_file_logging(os.path.join(out_dir, 'output.log')) + if args.debug: log.setLevel(logging.DEBUG) @@ -129,9 +133,6 @@ def main(argv=None): # Load build perf tests loader = BuildPerfTestLoader() suite = loader.discover(start_dir=os.path.dirname(oeqa.buildperf.__file__)) - # Set-up log file - out_dir = args.out_dir.format(date=datetime.now().strftime('%Y%m%d%H%M%S')) - setup_file_logging(os.path.join(out_dir, 'output.log')) archive_build_conf(out_dir) runner = BuildPerfTestRunner(out_dir, verbosity=2)