From e828c670f534430bfc215e953f847d27824ca8f8 Mon Sep 17 00:00:00 2001 From: Daan De Meyer Date: Sun, 6 Dec 2020 18:23:47 +0000 Subject: Remove "Found runner: " logging message from meson compile The ninja path is already logged as part of configure. Logging it again every time when using meson compile is overly verbose and doesn't add much value for the user. --- mesonbuild/mcompile.py | 1 - 1 file changed, 1 deletion(-) diff --git a/mesonbuild/mcompile.py b/mesonbuild/mcompile.py index 1e58207..41ed1b7 100644 --- a/mesonbuild/mcompile.py +++ b/mesonbuild/mcompile.py @@ -141,7 +141,6 @@ def get_parsed_args_ninja(options: 'argparse.Namespace', builddir: Path) -> T.Tu runner = detect_ninja() if runner is None: raise MesonException('Cannot find ninja.') - mlog.log('Found runner:', str(runner)) cmd = runner + ['-C', builddir.as_posix()] -- cgit v1.1