remove dbg

This commit is contained in:
Aiden McClelland
2022-11-27 13:51:45 -07:00
committed by Aiden McClelland
parent 43606d26e4
commit 78f6bbf7fe

View File

@@ -97,7 +97,7 @@ impl ProxyController {
Ok(uri) => *req.uri_mut() = uri,
Err(e) => error!("Error rewriting uri: {}", e),
}
let addr = dbg!(req.uri().to_string());
let addr = req.uri().to_string();
if is_upgrade_req(&req) {
let upgraded_req = hyper::upgrade::on(&mut req);