From 5a9dc56630540f797a6061b90b23ab492b3095f0 Mon Sep 17 00:00:00 2001 From: Vortrex <3858226+VortrexFTW@users.noreply.github.com> Date: Sun, 13 Feb 2022 19:32:01 -0600 Subject: [PATCH] Change keybind fail log type to debug --- scripts/client/keybind.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/scripts/client/keybind.js b/scripts/client/keybind.js index f965ba99..4c8c2d9c 100644 --- a/scripts/client/keybind.js +++ b/scripts/client/keybind.js @@ -36,10 +36,10 @@ function bindAccountKey(key, keyState) { lastKeyBindUse = sdl.ticks; tellServerPlayerUsedKeyBind(key); } else { - logToConsole(LOG_ERROR, `[VRR.KeyBind]: Failed to use keybind for key ${toUpperCase(getKeyNameFromId(key))} (${key}) - Not allowed to use keybinds!`); + logToConsole(LOG_DEBUG, `[VRR.KeyBind]: Failed to use keybind for key ${toUpperCase(getKeyNameFromId(key))} (${key}) - Not allowed to use keybinds!`); } } else { - logToConsole(LOG_ERROR, `[VRR.KeyBind]: Failed to use keybind for key ${toUpperCase(getKeyNameFromId(key))} (${key}) - Not enough time has passed since last keybind use!`); + logToConsole(LOG_DEBUG, `[VRR.KeyBind]: Failed to use keybind for key ${toUpperCase(getKeyNameFromId(key))} (${key}) - Not enough time has passed since last keybind use!`); } }); }