Log all commands before they're done.

This commit is contained in:
Bill Thiede 2022-12-03 22:45:39 -08:00
parent 66444931bf
commit 48c1a76240

View File

@ -60,6 +60,7 @@ struct TaskStatus {
}
fn logging_run(cmd: &mut Command) -> Result<TaskStatus, SyncError> {
info!("{:?}", cmd);
let start = Instant::now();
let o = cmd.output()?;
let ts = TaskStatus {