aboutsummaryrefslogtreecommitdiff
path: root/mesonbuild
diff options
context:
space:
mode:
authorNirbheek Chauhan <nirbheek@centricular.com>2020-07-20 19:48:43 +0530
committerXavier Claessens <xclaesse@gmail.com>2020-07-22 10:11:09 -0400
commit07e62fb42b9e5012e7b2964cdbf42b9e5f4e497b (patch)
tree50933724424bebdd32f7aa9b065c593433e0b9be /mesonbuild
parent84928888e1d47d9e013c38a0b260d5042e4d2392 (diff)
downloadmeson-07e62fb42b9e5012e7b2964cdbf42b9e5f4e497b.zip
meson-07e62fb42b9e5012e7b2964cdbf42b9e5f4e497b.tar.gz
meson-07e62fb42b9e5012e7b2964cdbf42b9e5f4e497b.tar.bz2
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.
Diffstat (limited to 'mesonbuild')
-rw-r--r--mesonbuild/backend/ninjabackend.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/mesonbuild/backend/ninjabackend.py b/mesonbuild/backend/ninjabackend.py
index 8c66fd0..3b4a4bd 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)