Skip to content

Commit 63676f8

Browse files
committed
fix: remove unnecessary prints
1 parent e814ca5 commit 63676f8

File tree

1 file changed

+0
-3
lines changed

1 file changed

+0
-3
lines changed

src/command_helpers.rs

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -211,7 +211,6 @@ fn wait_on_child(cmd: &Command, program: &str, child: &mut Child) -> Result<(),
211211
));
212212
}
213213
};
214-
println!("{}", status);
215214

216215
if status.success() {
217216
Ok(())
@@ -320,8 +319,6 @@ pub(crate) fn spawn(
320319
}
321320
}
322321

323-
println!("running: {:?}", cmd);
324-
325322
let cmd = ResetStderr(cmd);
326323
let child = cmd.0.stderr(cargo_output.stdio_for_warnings()).spawn();
327324
match child {

0 commit comments

Comments
 (0)