about summary refs log tree commit diff
path: root/src/tools
diff options
context:
space:
mode:
authorLukas Wirth <me@lukaswirth.dev>2025-08-15 17:35:33 +0000
committerGitHub <noreply@github.com>2025-08-15 17:35:33 +0000
commit8e7cca83344e511e263e91f9539b8d341b2dd2bb (patch)
treef4e57ddb31ba40d092f3eacb563b99edbeb14b2d /src/tools
parent1f12c623bd6aaaaed113c7496837823024e609a2 (diff)
parentb38dd2acb598adb14bd1f08f39090909be13498b (diff)
downloadrust-8e7cca83344e511e263e91f9539b8d341b2dd2bb.tar.gz
rust-8e7cca83344e511e263e91f9539b8d341b2dd2bb.zip
Merge pull request #20467 from SomeoneToIgnore/error-message
Use a more specific error message when talking about the server logs
Diffstat (limited to 'src/tools')
-rw-r--r--src/tools/rust-analyzer/crates/rust-analyzer/src/reload.rs4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/tools/rust-analyzer/crates/rust-analyzer/src/reload.rs b/src/tools/rust-analyzer/crates/rust-analyzer/src/reload.rs
index f8f29eee126..a8a54930c6e 100644
--- a/src/tools/rust-analyzer/crates/rust-analyzer/src/reload.rs
+++ b/src/tools/rust-analyzer/crates/rust-analyzer/src/reload.rs
@@ -152,7 +152,9 @@ impl GlobalState {
         if self.fetch_build_data_error().is_err() {
             status.health |= lsp_ext::Health::Warning;
             message.push_str("Failed to run build scripts of some packages.\n\n");
-            message.push_str("Please refer to the logs for more details on the errors.");
+            message.push_str(
+                "Please refer to the language server logs for more details on the errors.",
+            );
         }
         if let Some(err) = &self.config_errors {
             status.health |= lsp_ext::Health::Warning;