Remove commented code

This commit is contained in:
Kerollmops 2025-02-20 16:48:18 +01:00
parent 434fad5327
commit 245a55722a
No known key found for this signature in database
GPG Key ID: F250A4C4E3AE5F5F

View File

@ -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
}
}