From 9ce6e20ce239067896dc65f09e3fef1173293065 Mon Sep 17 00:00:00 2001 From: Markus Lehtonen Date: Tue, 16 Aug 2016 12:15:59 +0300 Subject: 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 --- scripts/oe-build-perf-test | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) 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) -- cgit 1.2.3-korg