From 245a55722a8f7de244d23b95f59a7a718e6d585d Mon Sep 17 00:00:00 2001 From: Kerollmops Date: Thu, 20 Feb 2025 16:48:18 +0100 Subject: [PATCH] Remove commented code --- crates/milli/src/update/new/indexer/write.rs | 7 ------- 1 file changed, 7 deletions(-) diff --git a/crates/milli/src/update/new/indexer/write.rs b/crates/milli/src/update/new/indexer/write.rs index c7e449243..1dad993f0 100644 --- a/crates/milli/src/update/new/indexer/write.rs +++ b/crates/milli/src/update/new/indexer/write.rs @@ -92,13 +92,6 @@ pub struct ChannelCongestion { impl ChannelCongestion { pub fn congestion_ratio(&self) -> f32 { - // tracing::debug!( - // "Channel congestion metrics - \ - // Attempts: {direct_attempts}, \ - // Blocked attempts: {blocking_attempts} \ - // ({congestion_pct:.1}% congestion)" - // ); - self.blocking_attempts as f32 / self.attempts as f32 } }