fix: Remove get_args 🐛

This commit is contained in:
Dheepak Krishnamurthy 2021-12-06 13:52:31 -07:00
parent 577b03e315
commit 5f5b335041
2 changed files with 37 additions and 24 deletions

View file

@ -1590,13 +1590,6 @@ impl TaskwarriorTui {
}
info!("Running `{:?}`", task);
debug!(
"Running `task {}`",
task.get_args()
.map(|s| s.to_string_lossy().to_string())
.collect::<Vec<String>>()
.join(" ")
);
let output = task.output()?;
let data = String::from_utf8_lossy(&output.stdout);
let error = String::from_utf8_lossy(&output.stderr);