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.
pull/7618/head
Nirbheek Chauhan 5 years ago
parent fcfad821eb
commit 34323b4f4a
  1. 2
      mesonbuild/backend/ninjabackend.py

@ -348,7 +348,7 @@ class NinjaBuildElement:
use_rspfile = self._should_use_rspfile() use_rspfile = self._should_use_rspfile()
if use_rspfile: if use_rspfile:
rulename = self.rulename + '_RSP' 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: else:
rulename = self.rulename rulename = self.rulename
line = 'build {}{}: {} {}'.format(outs, implicit_outs, rulename, ins) line = 'build {}{}: {} {}'.format(outs, implicit_outs, rulename, ins)

Loading…
Cancel
Save