diff --git a/src/command_helpers.rs b/src/command_helpers.rs index bb69f2090..07019b656 100644 --- a/src/command_helpers.rs +++ b/src/command_helpers.rs @@ -211,7 +211,6 @@ fn wait_on_child(cmd: &Command, program: &str, child: &mut Child) -> Result<(), )); } }; - println!("{}", status); if status.success() { Ok(()) @@ -320,8 +319,6 @@ pub(crate) fn spawn( } } - println!("running: {:?}", cmd); - let cmd = ResetStderr(cmd); let child = cmd.0.stderr(cargo_output.stdio_for_warnings()).spawn(); match child {