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:"