diff options
| author | Daan De Meyer <daan.j.demeyer@gmail.com> | 2020-12-06 18:23:47 +0000 |
|---|---|---|
| committer | Dylan Baker <dylan@pnwbakers.com> | 2020-12-07 10:05:00 -0800 |
| commit | e828c670f534430bfc215e953f847d27824ca8f8 (patch) | |
| tree | e0b268b97e768e1469ee5422409a81d7e1891231 | |
| parent | 1c631ec8abd34df9971ab03faf22d709f1c54348 (diff) | |
| download | meson-e828c670f534430bfc215e953f847d27824ca8f8.tar.gz | |
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.
| -rw-r--r-- | mesonbuild/mcompile.py | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/mesonbuild/mcompile.py b/mesonbuild/mcompile.py index 1e582070a..41ed1b79a 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()] |
