aboutsummaryrefslogtreecommitdiff
path: root/build/hypixelCached.js
diff options
context:
space:
mode:
authormat <github@matdoes.dev>2021-05-24 15:23:06 -0500
committermat <github@matdoes.dev>2021-05-24 15:23:06 -0500
commit8871e5775bf8361c3acb99f306ee34dbdced79d8 (patch)
tree2f68b046e0a94479cd70ab09919273613baf96b3 /build/hypixelCached.js
parent2ba6657d66d618ecc3ae8c7705de31fd8315599c (diff)
downloadskyblock-api-8871e5775bf8361c3acb99f306ee34dbdced79d8.tar.gz
skyblock-api-8871e5775bf8361c3acb99f306ee34dbdced79d8.tar.bz2
skyblock-api-8871e5775bf8361c3acb99f306ee34dbdced79d8.zip
add temporary debug thing
Diffstat (limited to 'build/hypixelCached.js')
-rw-r--r--build/hypixelCached.js6
1 files changed, 6 insertions, 0 deletions
diff --git a/build/hypixelCached.js b/build/hypixelCached.js
index c5a027c..50ffc3d 100644
--- a/build/hypixelCached.js
+++ b/build/hypixelCached.js
@@ -340,3 +340,9 @@ async function fetchProfileName(user, profile) {
return profileName;
}
exports.fetchProfileName = fetchProfileName;
+setInterval(() => {
+ const keys = exports.basicPlayerCache.keys();
+ if (keys)
+ console.log(exports.basicPlayerCache.get(keys[keys.length - 1]));
+ console.log(exports.basicPlayerCache.getStats());
+}, 60 * 1000);