removed a log message

Signed-off-by: James Ketrenos <james_eikona@ketrenos.com>
This commit is contained in:
James Ketrenos 2021-08-17 01:56:30 -07:00
parent 7377c316db
commit 0748bcf4b8

View File

@ -215,7 +215,6 @@ const rateLimit = async () => {
}
const delay = (lastFetch + (Math.random() * 5000 + 2500)) - Date.now();
if (delay > 0) {
// console.log(`Rate limiting for ${delay}ms`);
await wait(delay);
}
lastFetch = Date.now();