diff --git a/src/proxy.rs b/src/proxy.rs index 8c2ed77..39d96ec 100644 --- a/src/proxy.rs +++ b/src/proxy.rs @@ -2,7 +2,7 @@ use actix_web::{get, web, HttpResponse, Result, client::Client, Error}; #[get("/imageproxy/{url:.*}")] async fn handler(web::Path(url): web::Path) -> Result { - dbg!("Proxy: ", &url); + dbg!(&url); let client = Client::default(); client.get(url) .send()