aboutsummaryrefslogtreecommitdiff
path: root/build/database.js
diff options
context:
space:
mode:
Diffstat (limited to 'build/database.js')
-rw-r--r--build/database.js2
1 files changed, 0 insertions, 2 deletions
diff --git a/build/database.js b/build/database.js
index 600b21d..f3eda16 100644
--- a/build/database.js
+++ b/build/database.js
@@ -216,7 +216,6 @@ async function fetchProfileLeaderboardRaw(name) {
.sort(sortQuery)
.limit(leaderboardMax)
.toArray();
- console.log('leaderboardRaw', leaderboardRaw);
cachedRawLeaderboards.set(name, leaderboardRaw);
return leaderboardRaw;
}
@@ -272,7 +271,6 @@ exports.fetchProfileLeaderboard = fetchProfileLeaderboard;
/** Fetch a leaderboard */
async function fetchLeaderboard(name) {
const profileLeaderboards = await fetchAllProfileLeaderboardAttributes();
- console.log(name, profileLeaderboards, profileLeaderboards.includes(name));
if (profileLeaderboards.includes(name)) {
return await fetchProfileLeaderboard(name);
}