diff --git a/bot/util/logger.js b/bot/util/logger.js index 93ad88c..59c9c66 100644 --- a/bot/util/logger.js +++ b/bot/util/logger.js @@ -2,7 +2,7 @@ const { createLogger, format, transports, addColors } = require("winston"); const { combine, timestamp, printf, colorize } = format; const fmt = printf(({ level, message, timestamp }) => { - return timestamp + ' ' + level + ' ' + message; + return '[' + timestamp + '] ' + level + ' ' + message; }); const customLevels = {