Skip to content

Commit b98aebe

Browse files
Rollup merge of #128874 - Kobzol:cmd-verbose-logging, r=onur-ozkan
Disable verbose bootstrap command failure logging by default One of my recent bootstrap command refactoring PRs enabled verbose logging of command failures by default. While this is great for debugging bootstrap, in many situations it's just too verbose and prevents the user from seeing the actual printed stdout/stderr, which usually contains much more useful information. This PR reverts that logic, and only prints a detailed error when `-v` is passed to bootstrap. r? ```@onur-ozkan```
2 parents 98ff623 + a380d5e commit b98aebe

File tree

1 file changed

+14
-5
lines changed

1 file changed

+14
-5
lines changed

src/bootstrap/src/lib.rs

+14-5
Original file line numberDiff line numberDiff line change
@@ -986,7 +986,8 @@ impl Build {
986986
}
987987

988988
/// Execute a command and return its output.
989-
/// This method should be used for all command executions in bootstrap.
989+
/// Note: Ideally, you should use one of the BootstrapCommand::run* functions to
990+
/// execute commands. They internally call this method.
990991
#[track_caller]
991992
fn run(
992993
&self,
@@ -1057,20 +1058,28 @@ Executed at: {executed_at}"#,
10571058
CommandOutput::did_not_start(stdout, stderr)
10581059
}
10591060
};
1061+
1062+
let fail = |message: &str| {
1063+
if self.is_verbose() {
1064+
println!("{message}");
1065+
} else {
1066+
println!("Command has failed. Rerun with -v to see more details.");
1067+
}
1068+
exit!(1);
1069+
};
1070+
10601071
if !output.is_success() {
10611072
match command.failure_behavior {
10621073
BehaviorOnFailure::DelayFail => {
10631074
if self.fail_fast {
1064-
println!("{message}");
1065-
exit!(1);
1075+
fail(&message);
10661076
}
10671077

10681078
let mut failures = self.delayed_failures.borrow_mut();
10691079
failures.push(message);
10701080
}
10711081
BehaviorOnFailure::Exit => {
1072-
println!("{message}");
1073-
exit!(1);
1082+
fail(&message);
10741083
}
10751084
BehaviorOnFailure::Ignore => {
10761085
// If failures are allowed, either the error has been printed already

0 commit comments

Comments
 (0)