Skip to content

Commit 363cef5

Browse files
committed
fix: make error message in the status bar more useful
At the moment,the popup is just a bazillion of Cargo's "Compiling this\nCompiling that", which is not that useful. --quiet still displays error, which is what we needc
1 parent 6cd669e commit 363cef5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

crates/project_model/src/build_data.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -143,7 +143,7 @@ impl WorkspaceBuildData {
143143
cmd.env("RA_RUSTC_WRAPPER", "1");
144144
}
145145

146-
cmd.args(&["check", "--workspace", "--message-format=json", "--manifest-path"])
146+
cmd.args(&["check", "--quiet", "--workspace", "--message-format=json", "--manifest-path"])
147147
.arg(cargo_toml.as_ref());
148148

149149
// --all-targets includes tests, benches and examples in addition to the

0 commit comments

Comments
 (0)