Skip to content

Commit af79713

Browse files
author
Joshua Martell
committed
Fix incorrect this/that on logging statement
1 parent c043ff7 commit af79713

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/configproxy.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -511,7 +511,7 @@ class ConfigurableProxy extends EventEmitter {
511511
that.emit("proxyRequest", req, res);
512512
var prefix = match.prefix;
513513
var target = match.target;
514-
this.log.debug("PROXY %s %s to %s", kind.toUpperCase(), req.url, target);
514+
that.log.debug("PROXY %s %s to %s", kind.toUpperCase(), req.url, target);
515515
if (!that.includePrefix) {
516516
req.url = req.url.slice(prefix.length);
517517
}

0 commit comments

Comments
 (0)