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 => {