From af79713aec97baf7f0f859a4b4c4d1941cde83db Mon Sep 17 00:00:00 2001 From: Joshua Martell Date: Wed, 27 May 2020 17:22:25 -0500 Subject: [PATCH] Fix incorrect this/that on logging statement --- lib/configproxy.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/configproxy.js b/lib/configproxy.js index 50fab074..65789a34 100644 --- a/lib/configproxy.js +++ b/lib/configproxy.js @@ -511,7 +511,7 @@ class ConfigurableProxy extends EventEmitter { that.emit("proxyRequest", req, res); var prefix = match.prefix; var target = match.target; - this.log.debug("PROXY %s %s to %s", kind.toUpperCase(), req.url, target); + that.log.debug("PROXY %s %s to %s", kind.toUpperCase(), req.url, target); if (!that.includePrefix) { req.url = req.url.slice(prefix.length); }