diff --git a/src/ezhttp/handler.rs b/src/ezhttp/handler.rs index b654475..8f8ac30 100644 --- a/src/ezhttp/handler.rs +++ b/src/ezhttp/handler.rs @@ -66,7 +66,7 @@ pub async fn handler_http_rrs( .unwrap() .collect::>()[0]; - dbg!(addr); + dbg!(&addr); let req = match HttpRequest::read(sock.get_mut(), &addr).await { Ok(i) => i, @@ -76,7 +76,7 @@ pub async fn handler_http_rrs( } }; - dbg!(req); + dbg!(&req); let resp = match server.on_request(&req).await { Some(i) => i,