From ac8291baa2e5f172ee643257f9ede95d96be7762 Mon Sep 17 00:00:00 2001 From: Till Adam Date: Fri, 19 Jun 2026 13:27:30 +0200 Subject: [PATCH] internal: log when cache priming completes on startup Add a simple info log statement when cache priming finishes on startup. Disclosure: Anthropic Claude 3.5 Flash assisted with this change. --- crates/rust-analyzer/src/main_loop.rs | 3 +++ 1 file changed, 3 insertions(+) diff --git a/crates/rust-analyzer/src/main_loop.rs b/crates/rust-analyzer/src/main_loop.rs index edf3da5e6c07..64af456acd46 100644 --- a/crates/rust-analyzer/src/main_loop.rs +++ b/crates/rust-analyzer/src/main_loop.rs @@ -388,6 +388,9 @@ impl GlobalState { self.prime_caches_queue .request_op("restart after cancellation".to_owned(), ()); } + if !cancelled { + tracing::info!("workspace loaded and indexed"); + } if let Some((message, fraction, title)) = last_report.take() { self.report_progress( title,