From 20e9fbf545e6df35fd05cd19409245f246c74b5a Mon Sep 17 00:00:00 2001 From: Matthias Einwag Date: Fri, 26 Mar 2021 22:28:15 +0000 Subject: [PATCH] Remove authenticated log This pollutes the log a lot and doesn't help debugging. All cases where a packet is not authenticated should already be logged in different places, so just remove this. --- quinn-proto/src/connection/mod.rs | 1 - 1 file changed, 1 deletion(-) diff --git a/quinn-proto/src/connection/mod.rs b/quinn-proto/src/connection/mod.rs index 406b90cbd..f886bd2c6 100644 --- a/quinn-proto/src/connection/mod.rs +++ b/quinn-proto/src/connection/mod.rs @@ -1380,7 +1380,6 @@ where Some(x) => x, None => return, }; - trace!("authenticated"); if self.side.is_server() { if self.spaces[SpaceId::Initial].crypto.is_some() && space_id == SpaceId::Handshake { // A server stops sending and processing Initial packets when it receives its first Handshake packet.