From 308563bee327140da2dd93ff8505063b601d531f Mon Sep 17 00:00:00 2001 From: ChrisChrome Date: Mon, 26 Feb 2024 01:15:54 -0700 Subject: [PATCH] Added and commented out a debug log --- index.js | 1 + 1 file changed, 1 insertion(+) diff --git a/index.js b/index.js index 3e6dcb1..c0b6aff 100644 --- a/index.js +++ b/index.js @@ -96,6 +96,7 @@ function splitKeyword(keyword) { function checkServer(address) { return new Promise((resolve, reject) => { steam.queryGameServerInfo(address).then(data => { + // console.log(data) // Debug stuff data.keywords.split("-") data.address = address.split(":"); data.serverInfo = splitKeyword(data.keywords);