Skip to content

Commit 8e7cca8

Browse files
authored
Merge pull request rust-lang#20467 from SomeoneToIgnore/error-message
Use a more specific error message when talking about the server logs
2 parents 1f12c62 + b38dd2a commit 8e7cca8

File tree

1 file changed

+3
-1
lines changed
  • src/tools/rust-analyzer/crates/rust-analyzer/src

1 file changed

+3
-1
lines changed

src/tools/rust-analyzer/crates/rust-analyzer/src/reload.rs

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -152,7 +152,9 @@ impl GlobalState {
152152
if self.fetch_build_data_error().is_err() {
153153
status.health |= lsp_ext::Health::Warning;
154154
message.push_str("Failed to run build scripts of some packages.\n\n");
155-
message.push_str("Please refer to the logs for more details on the errors.");
155+
message.push_str(
156+
"Please refer to the language server logs for more details on the errors.",
157+
);
156158
}
157159
if let Some(err) = &self.config_errors {
158160
status.health |= lsp_ext::Health::Warning;

0 commit comments

Comments
 (0)