From f0e0254a4151ad3849ff3d20138a974321d708df Mon Sep 17 00:00:00 2001 From: ChrisChrome Date: Mon, 2 Oct 2023 17:47:58 -0600 Subject: [PATCH] moar logs --- index.js | 2 ++ 1 file changed, 2 insertions(+) diff --git a/index.js b/index.js index 25890f4..f156243 100644 --- a/index.js +++ b/index.js @@ -181,7 +181,9 @@ const generateExtensionListEmbed = async () => { // Add extensions that weren't in the results to the inactive array rows.forEach(row => { + console.log("2.2 foreach start") if (!uniqueExtensions.includes(row.cid_num)) { + console.log(`2.3 pushing ${row.cid_num}`) inactive.push(row.cid_num); } });