aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/cleaners/skyblock/profiles.ts1
-rw-r--r--src/hypixel.ts1
-rw-r--r--src/hypixelApi.ts2
-rw-r--r--src/hypixelCached.ts5
-rw-r--r--src/mojang.ts1
5 files changed, 0 insertions, 10 deletions
diff --git a/src/cleaners/skyblock/profiles.ts b/src/cleaners/skyblock/profiles.ts
index 0138c0b..ea290f6 100644
--- a/src/cleaners/skyblock/profiles.ts
+++ b/src/cleaners/skyblock/profiles.ts
@@ -9,7 +9,6 @@ export function cleanPlayerSkyblockProfiles(rawProfiles: HypixelPlayerStatsSkyBl
name: profile.cute_name
})
}
- console.log('cleanPlayerSkyblockProfiles', profiles)
return profiles
}
diff --git a/src/hypixel.ts b/src/hypixel.ts
index f3e1491..e2d0e6b 100644
--- a/src/hypixel.ts
+++ b/src/hypixel.ts
@@ -30,7 +30,6 @@ export async function sendCleanApiRequest({ path, args }, included?: Included[],
const rawResponse = await sendApiRequest({ path, key, args })
if (rawResponse.throttled) {
// if it's throttled, wait a second and try again
- console.log('throttled :/')
await new Promise(resolve => setTimeout(resolve, 1000))
return await sendCleanApiRequest({ path, args }, included, options)
}
diff --git a/src/hypixelApi.ts b/src/hypixelApi.ts
index 5b5e20f..5c4bb2b 100644
--- a/src/hypixelApi.ts
+++ b/src/hypixelApi.ts
@@ -127,7 +127,6 @@ export interface HypixelPlayer {
/** Send an HTTP request to the Hypixel API */
export async function sendApiRequest({ path, key, args }): Promise<HypixelResponse> {
- console.log('sending api request to', path, args)
// Send a raw http request to api.hypixel.net, and return the parsed json
if (key)
@@ -154,7 +153,6 @@ export async function sendApiRequest({ path, key, args }): Promise<HypixelRespon
if (fetchJsonParsed.throttle) {
if (apiKeyUsage[key])
apiKeyUsage[key].remaining = 0
- console.log('throttled :(')
return { throttled: true }
}
return fetchJsonParsed
diff --git a/src/hypixelCached.ts b/src/hypixelCached.ts
index 1125aa8..056f50e 100644
--- a/src/hypixelCached.ts
+++ b/src/hypixelCached.ts
@@ -92,7 +92,6 @@ export async function fetchPlayer(user: string): Promise<CleanPlayer> {
const playerUuid = await uuidFromUser(user)
if (playerCache.has(playerUuid)) {
- console.log('cache hit! fetchPlayer', playerUuid)
return playerCache.get(playerUuid)
}
@@ -111,7 +110,6 @@ export async function fetchPlayer(user: string): Promise<CleanPlayer> {
export async function fetchSkyblockProfiles(playerUuid: string): Promise<CleanProfile[]> {
if (profilesCache.has(playerUuid)) {
- console.log('cache hit! fetchSkyblockProfiles', playerUuid)
return profilesCache.get(playerUuid)
}
@@ -157,7 +155,6 @@ export async function fetchSkyblockProfiles(playerUuid: string): Promise<CleanPr
async function fetchBasicProfiles(user: string): Promise<CleanBasicProfile[]> {
const playerUuid = await uuidFromUser(user)
if (basicProfilesCache.has(playerUuid)) {
- console.log('cache hit! fetchBasicProfiles')
return basicProfilesCache.get(playerUuid)
}
const player = await fetchPlayer(playerUuid)
@@ -202,7 +199,6 @@ export async function fetchProfile(user: string, profile: string): Promise<Clean
const profileUuid = await fetchProfileUuid(playerUuid, profile)
if (profileCache.has(profileUuid)) {
- console.log('cache hit! fetchProfile')
// we have the profile cached, return it :)
return profileCache.get(profileUuid)
}
@@ -238,7 +234,6 @@ export async function fetchProfileName(user: string, profile: string): Promise<s
if (profileNameCache.has(`${playerUuid}.${profileUuid}`)) {
// Return the profile name if it's cached
- console.log('cache hit! fetchProfileName')
return profileNameCache.get(`${playerUuid}.${profileUuid}`)
}
diff --git a/src/mojang.ts b/src/mojang.ts
index 4de7717..3ec274e 100644
--- a/src/mojang.ts
+++ b/src/mojang.ts
@@ -34,7 +34,6 @@ interface AshconResponse {
* Get mojang api data from ashcon.app
*/
export async function mojangDataFromUser(user: string): Promise<AshconResponse> {
- console.log('cache miss :( mojangDataFromUser', user)
const fetchResponse = await fetch(
'https://api.ashcon.app/mojang/v2/user/' + user,
{ agent: () => httpsAgent }