Skip to content

Commit

Permalink
fix: Remove debug print
Browse files Browse the repository at this point in the history
  • Loading branch information
Threated committed Jan 19, 2024
1 parent 0457c32 commit ee76c47
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/logic_ask.rs
Original file line number Diff line number Diff line change
@@ -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());

0 comments on commit ee76c47

Please sign in to comment.