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.
This commit is contained in:
Max Inden 2023-03-24 18:09:22 +01:00 committed by GitHub
parent 0ec701e101
commit 1a85e24ef9
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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(());