From 8ba3cae92104cc878baf814f4bff15afa7c65300 Mon Sep 17 00:00:00 2001 From: shamoon <4887959+shamoon@users.noreply.github.com> Date: Fri, 9 May 2025 01:14:02 -0700 Subject: [PATCH] Log --- src/utils/proxy/http.js | 1 + 1 file changed, 1 insertion(+) diff --git a/src/utils/proxy/http.js b/src/utils/proxy/http.js index d721ffd85..c5fa51183 100644 --- a/src/utils/proxy/http.js +++ b/src/utils/proxy/http.js @@ -117,6 +117,7 @@ export async function httpProxy(url, params = {}) { let agent; if (proxyUrl) { agent = constructedUrl.protocol === "https:" ? new HttpsProxyAgent(proxyUrl) : new HttpProxyAgent(proxyUrl); + logger.debug("Using proxy for request to %s: %s", constructedUrl.href, proxyUrl); } else { agent = constructedUrl.protocol === "https:"