From 9b263957a3dad12292796daaff3f814be83c470c Mon Sep 17 00:00:00 2001 From: Dragory <2606411+Dragory@users.noreply.github.com> Date: Thu, 28 May 2020 03:15:06 +0300 Subject: [PATCH] RATELIMITED -> 429 --- backend/src/index.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/backend/src/index.ts b/backend/src/index.ts index 45bba7f7..80e87cbc 100644 --- a/backend/src/index.ts +++ b/backend/src/index.ts @@ -100,7 +100,7 @@ connect().then(async conn => { client.on("debug", message => { if (message.includes(" 429 ")) { - logger.info(`[RATELIMITED] ${message}`); + logger.info(`[429] ${message}`); } });