chore: convert datagram failure error to debug (#2869)

This commit is contained in:
Matthias Seitz
2023-05-26 18:55:19 +02:00
committed by GitHub
parent f5b091dd53
commit 79f99ad0fc

View File

@ -1579,7 +1579,7 @@ pub(crate) async fn send_loop(udp: Arc<UdpSocket>, rx: EgressReceiver) {
trace!( target : "discv4", ?to, ?size,"sent payload"); trace!( target : "discv4", ?to, ?size,"sent payload");
} }
Err(err) => { Err(err) => {
warn!( target : "discv4", ?to, ?err,"Failed to send datagram."); debug!( target : "discv4", ?to, ?err,"Failed to send datagram.");
} }
} }
} }