From 1a85e24ef94eba2a79104d13e89b0891bf5997d4 Mon Sep 17 00:00:00 2001 From: Max Inden Date: Fri, 24 Mar 2023 18:09:22 +0100 Subject: [PATCH] fix(quic): Downgrade driver shutdown log line from info to debug No need to inform the user each time the quic socket driver is shutting down. Pull-Request: #3672. --- transports/quic/src/endpoint.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/transports/quic/src/endpoint.rs b/transports/quic/src/endpoint.rs index 319ce571276..cf7b0fbafef 100644 --- a/transports/quic/src/endpoint.rs +++ b/transports/quic/src/endpoint.rs @@ -471,7 +471,7 @@ impl Driver

{ if is_drained_event { self.alive_connections.remove(&connection_id); if self.is_decoupled && self.alive_connections.is_empty() { - log::info!( + log::debug!( "Driver is decoupled and no active connections remain. Shutting down." ); return ControlFlow::Break(());