fix: clean up logger info message formatting and remove unused import in rate limit tests

This commit is contained in:
MythEclipse
2026-05-18 21:19:38 +07:00
parent 825e969569
commit 0bc12651db
3 changed files with 11 additions and 8 deletions
+3 -1
View File
@@ -30,7 +30,9 @@ const executeWithBotRetry = async (
attemptedBots++;
if (attemptedBots < bots.length) {
logger.info(`Bot Index ${prevIndex} hit 429. Instantly rotating to Bot Index ${nextIndex}...`);
logger.info(
`Bot Index ${prevIndex} hit 429. Instantly rotating to Bot Index ${nextIndex}...`,
);
return executeWithBotRetry(action, retries, attemptedBots);
}