diff --git a/src/bootstrap/compile.rs b/src/bootstrap/compile.rs index a00877b2970..53933e4cd7d 100644 --- a/src/bootstrap/compile.rs +++ b/src/bootstrap/compile.rs @@ -1426,7 +1426,7 @@ pub fn stream_cargo( cb(msg) } // If this was informational, just print it out and continue - Err(_) => eprintln!("{}", line), + Err(_) => println!("{}", line), } } diff --git a/src/bootstrap/dist.rs b/src/bootstrap/dist.rs index 9684332e6fb..d37a59426f8 100644 --- a/src/bootstrap/dist.rs +++ b/src/bootstrap/dist.rs @@ -37,7 +37,7 @@ pub fn tmpdir(builder: &Builder<'_>) -> PathBuf { fn missing_tool(tool_name: &str, skip: bool) { if skip { - eprintln!("Unable to build {}, skipping dist", tool_name) + println!("Unable to build {}, skipping dist", tool_name) } else { panic!("Unable to build {}", tool_name) }