aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--build/hypixelApi.js1
-rw-r--r--src/hypixel.ts1
-rw-r--r--src/hypixelApi.ts1
3 files changed, 2 insertions, 1 deletions
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<HypixelRespon
{ agent: () => 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))