Unnamed repository; edit this file 'description' to name the repository.
Remove incorrect warning log
| -rw-r--r-- | crates/rust-analyzer/src/flycheck.rs | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/crates/rust-analyzer/src/flycheck.rs b/crates/rust-analyzer/src/flycheck.rs index c74f4550fd..797b959940 100644 --- a/crates/rust-analyzer/src/flycheck.rs +++ b/crates/rust-analyzer/src/flycheck.rs @@ -757,13 +757,6 @@ impl FlycheckActor { DiagnosticsReceived::AtLeastOneAndClearedWorkspace; } - if let Some(package_id) = package_id { - tracing::warn!( - "Ignoring package label {:?} and applying diagnostics to the whole workspace", - package_id - ); - } - self.send(FlycheckMessage::AddDiagnostic { id: self.id, generation: self.generation, |