aboutsummaryrefslogtreecommitdiff
path: root/build
diff options
context:
space:
mode:
authormat <27899617+mat-1@users.noreply.github.com>2021-02-15 13:01:49 -0600
committermat <27899617+mat-1@users.noreply.github.com>2021-02-15 13:01:49 -0600
commit839b43b1cfc0735e002211326246c058e5ec759b (patch)
tree8c63cb8151c3aea7c540159dc5cab18259755510 /build
parent2c1fa08673548af87a860b69aa602bc509c56b1c (diff)
downloadskyblock-api-839b43b1cfc0735e002211326246c058e5ec759b.tar.gz
skyblock-api-839b43b1cfc0735e002211326246c058e5ec759b.tar.bz2
skyblock-api-839b43b1cfc0735e002211326246c058e5ec759b.zip
remove debug logs
Diffstat (limited to 'build')
-rw-r--r--build/cleaners/skyblock/profiles.js1
-rw-r--r--build/hypixel.js1
-rw-r--r--build/hypixelApi.js2
-rw-r--r--build/hypixelCached.js5
-rw-r--r--build/mojang.js1
5 files changed, 0 insertions, 10 deletions
diff --git a/build/cleaners/skyblock/profiles.js b/build/cleaners/skyblock/profiles.js
index 1996d55..b4eb07b 100644
--- a/build/cleaners/skyblock/profiles.js
+++ b/build/cleaners/skyblock/profiles.js
@@ -10,7 +10,6 @@ function cleanPlayerSkyblockProfiles(rawProfiles) {
name: profile.cute_name
});
}
- console.log('cleanPlayerSkyblockProfiles', profiles);
return profiles;
}
exports.cleanPlayerSkyblockProfiles = cleanPlayerSkyblockProfiles;
diff --git a/build/hypixel.js b/build/hypixel.js
index 91ec025..ee81fb5 100644
--- a/build/hypixel.js
+++ b/build/hypixel.js
@@ -37,7 +37,6 @@ async function sendCleanApiRequest({ path, args }, included, options) {
const rawResponse = await hypixelApi_1.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/build/hypixelApi.js b/build/hypixelApi.js
index c9621eb..ca2526f 100644
--- a/build/hypixelApi.js
+++ b/build/hypixelApi.js
@@ -45,7 +45,6 @@ function chooseApiKey() {
exports.chooseApiKey = chooseApiKey;
/** Send an HTTP request to the Hypixel API */
async function sendApiRequest({ path, key, args }) {
- console.log('sending api request to', path, args);
// Send a raw http request to api.hypixel.net, and return the parsed json
if (key)
// If there's an api key, add it to the arguments
@@ -64,7 +63,6 @@ async function sendApiRequest({ path, key, args }) {
if (fetchJsonParsed.throttle) {
if (apiKeyUsage[key])
apiKeyUsage[key].remaining = 0;
- console.log('throttled :(');
return { throttled: true };
}
return fetchJsonParsed;
diff --git a/build/hypixelCached.js b/build/hypixelCached.js
index c357763..660bab4 100644
--- a/build/hypixelCached.js
+++ b/build/hypixelCached.js
@@ -100,7 +100,6 @@ exports.usernameFromUser = usernameFromUser;
async function fetchPlayer(user) {
const playerUuid = await uuidFromUser(user);
if (playerCache.has(playerUuid)) {
- console.log('cache hit! fetchPlayer', playerUuid);
return playerCache.get(playerUuid);
}
const cleanPlayer = await hypixel.sendCleanApiRequest({
@@ -115,7 +114,6 @@ async function fetchPlayer(user) {
exports.fetchPlayer = fetchPlayer;
async function fetchSkyblockProfiles(playerUuid) {
if (profilesCache.has(playerUuid)) {
- console.log('cache hit! fetchSkyblockProfiles', playerUuid);
return profilesCache.get(playerUuid);
}
const profiles = await hypixel.sendCleanApiRequest({
@@ -154,7 +152,6 @@ exports.fetchSkyblockProfiles = fetchSkyblockProfiles;
async function fetchBasicProfiles(user) {
const playerUuid = await uuidFromUser(user);
if (basicProfilesCache.has(playerUuid)) {
- console.log('cache hit! fetchBasicProfiles');
return basicProfilesCache.get(playerUuid);
}
const player = await fetchPlayer(playerUuid);
@@ -193,7 +190,6 @@ async function fetchProfile(user, profile) {
const playerUuid = await uuidFromUser(user);
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);
}
@@ -219,7 +215,6 @@ async function fetchProfileName(user, profile) {
const playerUuid = await uuidFromUser(user);
if (profileNameCache.has(`${playerUuid}.${profileUuid}`)) {
// Return the profile name if it's cached
- console.log('cache hit! fetchProfileName');
return profileNameCache.get(`${playerUuid}.${profileUuid}`);
}
const basicProfiles = await fetchBasicProfiles(playerUuid);
diff --git a/build/mojang.js b/build/mojang.js
index 344e377..afca782 100644
--- a/build/mojang.js
+++ b/build/mojang.js
@@ -17,7 +17,6 @@ const httpsAgent = new https_1.Agent({
* Get mojang api data from ashcon.app
*/
async function mojangDataFromUser(user) {
- console.log('cache miss :( mojangDataFromUser', user);
const fetchResponse = await node_fetch_1.default('https://api.ashcon.app/mojang/v2/user/' + user, { agent: () => httpsAgent });
return await fetchResponse.json();
}