From a7fed8751a0144523614f726f041f8e84fd56f33 Mon Sep 17 00:00:00 2001 From: Vortrex <3858226+VortrexFTW@users.noreply.github.com> Date: Thu, 22 Sep 2022 05:17:29 -0500 Subject: [PATCH] Use info log level for script initialized message --- scripts/client/chat.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/client/chat.js b/scripts/client/chat.js index 360f26a1..c85140ce 100644 --- a/scripts/client/chat.js +++ b/scripts/client/chat.js @@ -33,7 +33,7 @@ function initChatBoxScript() { scrollUpKey = getKeyIdFromParams("pageup"); scrollDownKey = getKeyIdFromParams("pagedown"); bindChatBoxKeys(); - logToConsole(LOG_DEBUG, "[AGRP.Chat]: Chat script initialized!"); + logToConsole(LOG_INFO, "[AGRP.Chat]: Chat script initialized!"); } // ===========================================================================