change colour of command logs

This commit is contained in:
Emily 2020-10-21 18:07:03 +11:00
parent 3f09ea7f76
commit fe3cc29404
1 changed files with 1 additions and 1 deletions

View File

@ -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);
}
}