From eb918b59e8a0cc65f1142fab4b80b3d76df9c457 Mon Sep 17 00:00:00 2001 From: mat Date: Thu, 24 Jun 2021 15:54:57 -0500 Subject: debugging:tm: --- build/hypixelApi.js | 1 + src/hypixel.ts | 1 - src/hypixelApi.ts | 1 + 3 files changed, 2 insertions(+), 1 deletion(-) diff --git a/build/hypixelApi.js b/build/hypixelApi.js index 7c1176e..8ab2c46 100644 --- a/build/hypixelApi.js +++ b/build/hypixelApi.js @@ -70,6 +70,7 @@ async function sendApiRequest({ path, key, args }) { try { fetchResponse = await node_fetch_1.default(fetchUrl, { agent: () => httpsAgent }); fetchJsonParsed = await fetchResponse.json(); + console.log('gotten api response', fetchJsonParsed); } catch { // if there's an error, wait a second and try again diff --git a/src/hypixel.ts b/src/hypixel.ts index bfb826e..bea64fb 100644 --- a/src/hypixel.ts +++ b/src/hypixel.ts @@ -38,7 +38,6 @@ export async function sendCleanApiRequest({ path, args }, included?: Included[], await new Promise(resolve => setTimeout(resolve, 1000)) return await sendCleanApiRequest({ path, args }, included, options) } - // clean the response return await cleanResponse({ path, data: rawResponse }, options ?? {}) } diff --git a/src/hypixelApi.ts b/src/hypixelApi.ts index 886b261..25ab68b 100644 --- a/src/hypixelApi.ts +++ b/src/hypixelApi.ts @@ -158,6 +158,7 @@ export async function sendApiRequest({ path, key, args }): Promise httpsAgent } ) fetchJsonParsed = await fetchResponse.json() + console.log('gotten api response', fetchJsonParsed) } catch { // if there's an error, wait a second and try again await new Promise((resolve) => setTimeout(resolve, 1000)) -- cgit