You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Auto merge of #134207 - jieyouxu:revert-134040, r=lqd
Revert "bootstrap: print{ln}! -> eprint{ln}! (take 2) #134040"
Unfortunately, #134040 is proving to have caused more output interleaving problems that are tricky to diagnose and fix, and I think we probably should leave these untouched as bootstrap and compiletest has a bunch of interconnecting parts, and the commands and tools that they exercise do not consistently use stderr/stdout either. This causes hard-to-diagnose output interleaving bugs, which unfortunately degrades contributor experience.
This PR reverts two PRs in order to cleanly revert #134040:
1. Revert #134123 which is a fix-forward after #134040.
2. Revert #134040 itself.
I don't regret the initial effort `@clubby789,` and thank you for making the attempts, but I think we need to refrain from touching too many of these at once because some of the interleaving are very non-obvious and we don't have test coverage for.
r? `@clubby789`
cc `@Zalathar`
eprintln!("To get started, try one of the following commands:");
189
+
println!("To get started, try one of the following commands:");
190
190
for cmd in suggestions {
191
-
eprintln!("- `x.py {cmd}`");
191
+
println!("- `x.py {cmd}`");
192
192
}
193
193
194
194
if profile != Profile::Dist{
195
-
eprintln!(
195
+
println!(
196
196
"For more suggestions, see https://rustc-dev-guide.rust-lang.org/building/suggested.html"
0 commit comments