From 80ff50cf26d1d90ca4b954a7c5dbd25007c4559c Mon Sep 17 00:00:00 2001 From: Vortrex <3858226+VortrexFTW@users.noreply.github.com> Date: Sun, 4 Apr 2021 23:23:37 -0500 Subject: [PATCH] Change keybind init log to info --- scripts/server/keybind.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/scripts/server/keybind.js b/scripts/server/keybind.js index aa13505f..c5215b45 100644 --- a/scripts/server/keybind.js +++ b/scripts/server/keybind.js @@ -129,9 +129,9 @@ let bindableKeys = { // =========================================================================== function initKeyBindScript() { - logToConsole(LOG_DEBUG, "[Asshat.KeyBind]: Initializing key bind script ..."); + logToConsole(LOG_INFO, "[Asshat.KeyBind]: Initializing key bind script ..."); getServerConfig().keyBind = loadKeyBindConfiguration(); - logToConsole(LOG_DEBUG, "[Asshat.KeyBind]: Key bind script initialized!"); + logToConsole(LOG_INFO, "[Asshat.KeyBind]: Key bind script initialized!"); } // ===========================================================================