From 493a54ef6c2bd9b19890f8052f4ff672de45e4f8 Mon Sep 17 00:00:00 2001 From: MeexReay Date: Sun, 15 Sep 2024 01:56:08 +0300 Subject: [PATCH] commit debug remove --- src/ezhttp/handler.rs | 4 ---- 1 file changed, 4 deletions(-) diff --git a/src/ezhttp/handler.rs b/src/ezhttp/handler.rs index fc71119..71482df 100644 --- a/src/ezhttp/handler.rs +++ b/src/ezhttp/handler.rs @@ -66,8 +66,6 @@ pub async fn handler_flowgate( .unwrap() .collect::>()[0]; - dbg!(&addr); - let req = match HttpRequest::read(sock.get_mut(), &addr).await { Ok(i) => i, Err(e) => { @@ -76,8 +74,6 @@ pub async fn handler_flowgate( } }; - dbg!(&req); - let resp = match server.on_request(&req).await { Some(i) => i, None => {