diff --git a/rust/lance-io/src/scheduler.rs b/rust/lance-io/src/scheduler.rs index cce6d6ecc2..d7680ea59b 100644 --- a/rust/lance-io/src/scheduler.rs +++ b/rust/lance-io/src/scheduler.rs @@ -222,7 +222,7 @@ impl IoQueueState { || since_last_warn > BACKPRESSURE_DEBOUNCE { tracing::event!(tracing::Level::WARN, "Backpressure throttle exceeded"); - log::warn!("Backpressure throttle is full, I/O will pause until buffer is drained. Max I/O bandwidth will not be achieved because CPU is falling behind"); + log::debug!("Backpressure throttle is full, I/O will pause until buffer is drained. Max I/O bandwidth will not be achieved because CPU is falling behind"); self.last_warn .store(seconds_elapsed.max(1), Ordering::Release); }