diff options
| author | Nirbheek Chauhan <nirbheek@centricular.com> | 2020-07-20 19:48:43 +0530 |
|---|---|---|
| committer | Xavier Claessens <xclaesse@gmail.com> | 2020-07-22 10:11:09 -0400 |
| commit | 07e62fb42b9e5012e7b2964cdbf42b9e5f4e497b (patch) | |
| tree | 50933724424bebdd32f7aa9b065c593433e0b9be | |
| parent | 84928888e1d47d9e013c38a0b260d5042e4d2392 (diff) | |
| download | meson-07e62fb42b9e5012e7b2964cdbf42b9e5f4e497b.tar.gz | |
Don't spam about usage of rspfiles to stdout
Put it in the log file if necessary. Users don't need to know this.
It's very spammy.
| -rw-r--r-- | mesonbuild/backend/ninjabackend.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mesonbuild/backend/ninjabackend.py b/mesonbuild/backend/ninjabackend.py index 8c66fd066..3b4a4bdfc 100644 --- a/mesonbuild/backend/ninjabackend.py +++ b/mesonbuild/backend/ninjabackend.py @@ -348,7 +348,7 @@ class NinjaBuildElement: use_rspfile = self._should_use_rspfile() if use_rspfile: rulename = self.rulename + '_RSP' - mlog.log("Command line for building %s is long, using a response file" % self.outfilenames) + mlog.debug("Command line for building %s is long, using a response file" % self.outfilenames) else: rulename = self.rulename line = 'build {}{}: {} {}'.format(outs, implicit_outs, rulename, ins) |
