aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJussi Pakkanen <jpakkane@gmail.com>2016-11-17 00:20:36 +0200
committerJussi Pakkanen <jpakkane@gmail.com>2016-11-17 00:20:36 +0200
commit621219ccb0b0130f2146e32ccdc22db803b2bb09 (patch)
treec5901d7ec56fcd95b5b0df7c81fea60a1ad48a31
parentd45db903acf37b5775274e256793fbf2ad931066 (diff)
downloadmeson-621219ccb0b0130f2146e32ccdc22db803b2bb09.zip
meson-621219ccb0b0130f2146e32ccdc22db803b2bb09.tar.gz
meson-621219ccb0b0130f2146e32ccdc22db803b2bb09.tar.bz2
Removed duplicate log message for command running. Closes #1056.
-rw-r--r--mesonbuild/interpreter.py1
1 files changed, 0 insertions, 1 deletions
diff --git a/mesonbuild/interpreter.py b/mesonbuild/interpreter.py
index 9780626..6becdb6 100644
--- a/mesonbuild/interpreter.py
+++ b/mesonbuild/interpreter.py
@@ -1547,7 +1547,6 @@ class Interpreter():
raise InterpreterException('Run_command arguments must be strings or the output of files().')
args = cmd + expanded_args
in_builddir = kwargs.get('in_builddir', False)
- mlog.debug('Running command:', ' '.join(args))
if not isinstance(in_builddir, bool):
raise InterpreterException('in_builddir must be boolean.')
return RunProcess(args, self.environment.source_dir, self.environment.build_dir,