Skip to content

Commit

Permalink
fix(quic): Downgrade driver shutdown log line from info to debug
Browse files Browse the repository at this point in the history
No need to inform the user each time the quic socket driver is shutting down.

Pull-Request: #3672.
  • Loading branch information
mxinden committed Mar 24, 2023
1 parent 0ec701e commit 1a85e24
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion transports/quic/src/endpoint.rs
Original file line number Diff line number Diff line change
Expand Up @@ -471,7 +471,7 @@ impl<P: Provider> Driver<P> {
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(());
Expand Down

0 comments on commit 1a85e24

Please sign in to comment.