diff options
author | Jussi Pakkanen <jpakkane@gmail.com> | 2016-11-17 00:20:36 +0200 |
---|---|---|
committer | Jussi Pakkanen <jpakkane@gmail.com> | 2016-11-17 00:20:36 +0200 |
commit | 621219ccb0b0130f2146e32ccdc22db803b2bb09 (patch) | |
tree | c5901d7ec56fcd95b5b0df7c81fea60a1ad48a31 /mesonbuild/interpreter.py | |
parent | d45db903acf37b5775274e256793fbf2ad931066 (diff) | |
download | meson-621219ccb0b0130f2146e32ccdc22db803b2bb09.zip meson-621219ccb0b0130f2146e32ccdc22db803b2bb09.tar.gz meson-621219ccb0b0130f2146e32ccdc22db803b2bb09.tar.bz2 |
Removed duplicate log message for command running. Closes #1056.
Diffstat (limited to 'mesonbuild/interpreter.py')
-rw-r--r-- | mesonbuild/interpreter.py | 1 |
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, |