diff --git a/src/common/js/Logger.ts b/src/common/js/Logger.ts index 03d40f2..750e11d 100644 --- a/src/common/js/Logger.ts +++ b/src/common/js/Logger.ts @@ -14,7 +14,7 @@ function createColorLogger(colors: string[], name?: string){ (LoggerObj)[color] = function(...content: Array): void{ if(content.length === 0) return let date = new Date() - let time = [date.getHours(), date.getMinutes(), date.getMilliseconds()].join(':') + let time = [date.getHours(), date.getMinutes(), date.getSeconds(), date.getMilliseconds()].join(':') if( typeof content[0] === 'string' ){