From b851796ce9e1f5c51b095fbc8c49a8429f007075 Mon Sep 17 00:00:00 2001 From: JoaoOtavioS Date: Fri, 27 Oct 2023 18:29:47 -0300 Subject: [PATCH] remove log inside proxyTimeout --- lib/http-proxy/passes/web-incoming.js | 1 - 1 file changed, 1 deletion(-) diff --git a/lib/http-proxy/passes/web-incoming.js b/lib/http-proxy/passes/web-incoming.js index 3d197dc..fc5bc8f 100644 --- a/lib/http-proxy/passes/web-incoming.js +++ b/lib/http-proxy/passes/web-incoming.js @@ -133,7 +133,6 @@ module.exports = { // allow outgoing socket to timeout so that we could // show an error page at the initial request if (options.proxyTimeout) { - console.log(options); proxyReq.setTimeout(options.proxyTimeout, () => { if (options.proxyTimeoutCustomError) { const timeoutError = new Error("The proxy request timed out");