diff options
-rw-r--r-- | src/makefile/command_line.rs | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/makefile/command_line.rs b/src/makefile/command_line.rs index f9cd876..b7c3b23 100644 --- a/src/makefile/command_line.rs +++ b/src/makefile/command_line.rs @@ -84,6 +84,7 @@ impl CommandLine { Token::MacroExpansion { name, .. } => name == "MAKE", _ => false, }); + log::trace!("executing {}", &self.execution_line); let execution_line = file.expand_macros(&self.execution_line, Some(target))?; let mut self_ignore_errors = self.ignore_errors; let mut self_silent = self.silent; |