diff --git a/src/Logger.ts b/src/Logger.ts index 7380ae6..2f0d9ce 100644 --- a/src/Logger.ts +++ b/src/Logger.ts @@ -35,6 +35,9 @@ function customPrint (info: winston.Logform.TransformableInfo): string { else if (info.level === 'verbose') { return colors.cyan('\n[VERBOSE] ') + info.message; } + else if (info.level === 'debug') { + return colors.magenta('\n[debug] ') + info.message; + } return `${info.level}: ${info.message} - ${info.timestamp}`; }