From 07e62fb42b9e5012e7b2964cdbf42b9e5f4e497b Mon Sep 17 00:00:00 2001 From: Nirbheek Chauhan Date: Mon, 20 Jul 2020 19:48:43 +0530 Subject: [PATCH] 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. --- mesonbuild/backend/ninjabackend.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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)