diff options
author | mat <github@matdoes.dev> | 2021-05-25 20:23:51 -0500 |
---|---|---|
committer | mat <github@matdoes.dev> | 2021-05-25 20:23:51 -0500 |
commit | b71732cb773c42cf690ec0f1999af750d2975603 (patch) | |
tree | 77a300e41d8ac68ceb02487a3eddee0d36000306 /src | |
parent | 14cb968fe3113ce0980b2feaaa6bf0e0493068d6 (diff) | |
download | skyblock-api-b71732cb773c42cf690ec0f1999af750d2975603.tar.gz skyblock-api-b71732cb773c42cf690ec0f1999af750d2975603.tar.bz2 skyblock-api-b71732cb773c42cf690ec0f1999af750d2975603.zip |
remove debug stuff
Diffstat (limited to 'src')
-rw-r--r-- | src/hypixelCached.ts | 24 |
1 files changed, 12 insertions, 12 deletions
diff --git a/src/hypixelCached.ts b/src/hypixelCached.ts index 47cf088..9bfd97e 100644 --- a/src/hypixelCached.ts +++ b/src/hypixelCached.ts @@ -372,15 +372,15 @@ export async function fetchProfileName(user: string, profile: string): Promise<s return profileName } -setInterval(() => { - const keys = basicPlayerCache.keys() - if (keys) - console.log(basicPlayerCache.get(keys[keys.length - 1])) - console.log('basicPlayerCache', basicPlayerCache.getStats()) - console.log('usernameCache', usernameCache.getStats()) - console.log('profileCache', profileCache.getStats()) - console.log('cachedRawLeaderboards size', cachedRawLeaderboards.size) - console.log( - Math.floor((process.memoryUsage().heapUsed / 1024 / 1024) * 10) / 10 - + 'mb') -}, 60 * 1000)
\ No newline at end of file +// setInterval(() => { + // const keys = basicPlayerCache.keys() + // if (keys) + // console.log(basicPlayerCache.get(keys[keys.length - 1])) + // console.log('basicPlayerCache', basicPlayerCache.getStats()) + // console.log('usernameCache', usernameCache.getStats()) + // console.log('profileCache', profileCache.getStats()) + // console.log('cachedRawLeaderboards size', cachedRawLeaderboards.size) + // console.log( + // Math.floor((process.memoryUsage().heapUsed / 1024 / 1024) * 10) / 10 + // + 'mb') +// }, 60 * 1000)
\ No newline at end of file |