From 6aebf7f92c7a0bdce8e7c8e8049739d70065ec3b Mon Sep 17 00:00:00 2001 From: Ruben Beltran del Rio Date: Mon, 27 Jan 2025 22:46:36 +0100 Subject: Search for "/" as the delimiter --- src/proxy.rs | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'src/proxy.rs') diff --git a/src/proxy.rs b/src/proxy.rs index 5678db9..176d5f9 100644 --- a/src/proxy.rs +++ b/src/proxy.rs @@ -249,7 +249,9 @@ fn handle_client(client_stream: TcpStream, configuration: &Arc) { .replace('\t', "\\t"); debug!(">>> {debug_original}"); - debug!("### {debug_final}"); + if debug_original != debug_final { + debug!("### {debug_final}"); + } // Lock the TLS stream and write the data to server match tls_stream_clone.lock() { -- cgit