From fe3cc2940448e111097f4c3f1c9f01b01ab843c6 Mon Sep 17 00:00:00 2001 From: Emily J Date: Wed, 21 Oct 2020 18:07:03 +1100 Subject: [PATCH] change colour of command logs --- bot/util/logger.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bot/util/logger.js b/bot/util/logger.js index 87e179a..65e300a 100644 --- a/bot/util/logger.js +++ b/bot/util/logger.js @@ -86,7 +86,7 @@ class Logger { * @returns {void} */ static command (body) { - console.log(chalk.bold.green(`[ ${this._getCurrentTime()} ] [ COMMAND ] `) + body); + console.log(chalk.bold.white(`[ ${this._getCurrentTime()} ] [ COMMAND ] `) + body); } }