Log the command when executing forward search

This commit is contained in:
Patrick Förster 2022-08-17 19:35:43 +02:00
parent 18db6f5eff
commit 6c17d5e4e7

View file

@ -170,6 +170,7 @@ fn replace_placeholder(
}
fn run_process(executable: &str, args: Vec<String>) -> io::Result<()> {
log::debug!("Executing forward search: {} {:?}", executable, args);
Command::new(executable)
.args(args)
.stdin(Stdio::null())