We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d25f64a commit 392077dCopy full SHA for 392077d
src/bootstrap/compile.rs
@@ -1426,7 +1426,7 @@ pub fn stream_cargo(
1426
cb(msg)
1427
}
1428
// If this was informational, just print it out and continue
1429
- Err(_) => eprintln!("{}", line),
+ Err(_) => println!("{}", line),
1430
1431
1432
src/bootstrap/dist.rs
@@ -37,7 +37,7 @@ pub fn tmpdir(builder: &Builder<'_>) -> PathBuf {
37
38
fn missing_tool(tool_name: &str, skip: bool) {
39
if skip {
40
- eprintln!("Unable to build {}, skipping dist", tool_name)
+ println!("Unable to build {}, skipping dist", tool_name)
41
} else {
42
panic!("Unable to build {}", tool_name)
43
0 commit comments