From 9529f730e0f7aa272e0a41eca43e4bac0d96d6d3 Mon Sep 17 00:00:00 2001 From: Thomas Lamprecht Date: Fri, 15 Nov 2024 10:29:25 +0100 Subject: [PATCH] rest-server: drop log intended for debugging again I considered keeping it as log::trace level, but IMO that's just not worth it, as just the peek_len is not giving one much more and can also be basically also gathered through strace. Signed-off-by: Thomas Lamprecht --- proxmox-rest-server/src/connection.rs | 1 - 1 file changed, 1 deletion(-) diff --git a/proxmox-rest-server/src/connection.rs b/proxmox-rest-server/src/connection.rs index d9fa0a73..526555ae 100644 --- a/proxmox-rest-server/src/connection.rs +++ b/proxmox-rest-server/src/connection.rs @@ -501,7 +501,6 @@ impl AcceptBuilder { // This means we will peek into the stream's queue until we got // HANDSHAKE_BYTE_LEN bytes or an error. Ok(peek_len) if peek_len < HANDSHAKE_BYTES_LEN => { - log::info!("peek_len = {peek_len}"); // if we detect the same peek len again but still got a readable stream, // the connection was probably closed, so abort here if peek_len == previous_peek_len {