From a8f7fa69410a9a988fc313ac72adedfd4dbac422 Mon Sep 17 00:00:00 2001 From: spikecodes <19519553+spikecodes@users.noreply.github.com> Date: Mon, 23 Nov 2020 09:11:24 -0800 Subject: [PATCH] Fix Proxy Log --- src/proxy.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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()