summaryrefslogtreecommitdiff
path: root/mesonbuild/mcompile.py
diff options
context:
space:
mode:
authorDaan De Meyer <daan.j.demeyer@gmail.com>2020-12-06 18:23:47 +0000
committerDylan Baker <dylan@pnwbakers.com>2020-12-07 10:05:00 -0800
commite828c670f534430bfc215e953f847d27824ca8f8 (patch)
treee0b268b97e768e1469ee5422409a81d7e1891231 /mesonbuild/mcompile.py
parent1c631ec8abd34df9971ab03faf22d709f1c54348 (diff)
downloadmeson-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.
Diffstat (limited to 'mesonbuild/mcompile.py')
-rw-r--r--mesonbuild/mcompile.py1
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()]