Skip to content

Commit 11917cd

Browse files
Use a more specific error message when talking about the server logs
1 parent a6b199c commit 11917cd

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

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)