From 07af18c64eef726522d640cc948f36cca11b4a60 Mon Sep 17 00:00:00 2001 From: Vortrex <3858226+VortrexFTW@users.noreply.github.com> Date: Thu, 22 Sep 2022 05:21:23 -0500 Subject: [PATCH] Use verbose log level for each add command handler --- scripts/server/command.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/server/command.js b/scripts/server/command.js index 26a2e50a..6b45fe5a 100644 --- a/scripts/server/command.js +++ b/scripts/server/command.js @@ -704,7 +704,7 @@ function addAllCommandHandlers() { let commands = getCommands(); for (let i in commands) { for (let j in commands[i]) { - logToConsole(LOG_DEBUG, `[AGRP.Command] Adding command handler for ${i} - ${commands[i][j].command}`); + logToConsole(LOG_VERBOSE, `[AGRP.Command] Adding command handler for ${i} - ${commands[i][j].command}`); addCommandHandler(commands[i][j].command, processPlayerCommand); commandCount++; }