diff --git a/src/logic_ask.rs b/src/logic_ask.rs index 16bd50b..9845583 100644 --- a/src/logic_ask.rs +++ b/src/logic_ask.rs @@ -25,7 +25,7 @@ pub(crate) async fn handler_http( let host_header_auth = req.headers() .get(header::HOST) .and_then(|v| v.to_str().ok()) - .and_then(|v| dbg!(Authority::from_str(v)).ok()); + .and_then(|v| Authority::from_str(v).ok()); let authority = https_authority .as_ref() .or(uri.authority());