From 4018149bc75a36459560b6a77a224f88c72db4c1 Mon Sep 17 00:00:00 2001 From: Tom <58078313+reed-tom@users.noreply.github.com> Date: Mon, 11 Sep 2023 14:25:58 -0400 Subject: [PATCH] removed debug message --- routes/public/stats/index.js | 1 - 1 file changed, 1 deletion(-) diff --git a/routes/public/stats/index.js b/routes/public/stats/index.js index 52298b4..a2f322f 100644 --- a/routes/public/stats/index.js +++ b/routes/public/stats/index.js @@ -31,7 +31,6 @@ module.exports = (baseRoute, middleWare, router) => { */ try { if (!common.isHostAllowed(req, res)) return; - console.log("HEADERS" + JSON.stringify(req.headers), "remoteAddress" + req.connection.remoteAddress, "remotePort" + req.connection.remotePort, "localAddress" + req.connection.localAddress); // IP FROM PROXY let ip = req.headers["x-real-ip"]; if (ip === undefined) ip = req.headers["proxy-ip"];