diff options
| author | Lukas Wirth <me@lukaswirth.dev> | 2025-08-05 08:57:17 +0000 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2025-08-05 08:57:17 +0000 |
| commit | 37b5f626d695773a7c6bb7f9703b59f86dceb81d (patch) | |
| tree | 4a1b33abd209147f0691b6bbe0a81e143ab81b17 | |
| parent | 5ba502fcd39365727cb999135a76d4c46d101094 (diff) | |
| parent | a0ca79e2eff61e4aa5d9d31f7d7e008c6587ba5d (diff) | |
| download | rust-37b5f626d695773a7c6bb7f9703b59f86dceb81d.tar.gz rust-37b5f626d695773a7c6bb7f9703b59f86dceb81d.zip | |
Merge pull request #20389 from Veykril/push-ssyssvnrywvy
Slim down compile time artifact progress reports
| -rw-r--r-- | src/tools/rust-analyzer/crates/project-model/src/build_dependencies.rs | 8 | ||||
| -rw-r--r-- | src/tools/rust-analyzer/crates/rust-analyzer/src/main_loop.rs | 2 |
2 files changed, 3 insertions, 7 deletions
diff --git a/src/tools/rust-analyzer/crates/project-model/src/build_dependencies.rs b/src/tools/rust-analyzer/crates/project-model/src/build_dependencies.rs index 5bea74bed7e..203173c11be 100644 --- a/src/tools/rust-analyzer/crates/project-model/src/build_dependencies.rs +++ b/src/tools/rust-analyzer/crates/project-model/src/build_dependencies.rs @@ -347,9 +347,7 @@ impl WorkspaceBuildScripts { match message { Message::BuildScriptExecuted(mut message) => { with_output_for(&message.package_id.repr, &mut |name, data| { - progress(format!( - "building compile-time-deps: build script {name} run" - )); + progress(format!("build script {name} run")); let cfgs = { let mut acc = Vec::new(); for cfg in &message.cfgs { @@ -380,9 +378,7 @@ impl WorkspaceBuildScripts { } Message::CompilerArtifact(message) => { with_output_for(&message.package_id.repr, &mut |name, data| { - progress(format!( - "building compile-time-deps: proc-macro {name} built" - )); + progress(format!("proc-macro {name} built")); if data.proc_macro_dylib_path == ProcMacroDylibPath::NotBuilt { data.proc_macro_dylib_path = ProcMacroDylibPath::NotProcMacro; } diff --git a/src/tools/rust-analyzer/crates/rust-analyzer/src/main_loop.rs b/src/tools/rust-analyzer/crates/rust-analyzer/src/main_loop.rs index 61c758d5e86..f5932d8cff0 100644 --- a/src/tools/rust-analyzer/crates/rust-analyzer/src/main_loop.rs +++ b/src/tools/rust-analyzer/crates/rust-analyzer/src/main_loop.rs @@ -812,7 +812,7 @@ impl GlobalState { }; if let Some(state) = state { - self.report_progress("Building build-artifacts", state, msg, None, None); + self.report_progress("Building compile-time-deps", state, msg, None, None); } } Task::LoadProcMacros(progress) => { |
