From ba19654a5e75d7fdf31f5d53cb887ff1b6b77a39 Mon Sep 17 00:00:00 2001 From: Phil Kunz Date: Fri, 18 Jan 2019 01:51:21 +0100 Subject: [PATCH] fix(core): update --- ts/smartlog.classes.smartlog.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ts/smartlog.classes.smartlog.ts b/ts/smartlog.classes.smartlog.ts index 695b943..3380f06 100644 --- a/ts/smartlog.classes.smartlog.ts +++ b/ts/smartlog.classes.smartlog.ts @@ -57,7 +57,7 @@ export class Smartlog { */ public log(logLevelArg: TLogLevel, logMessageArg: string, logDataArg?: any) { if (this.consoleEnabled) { - console.log(`LOG: ${logLevelArg}: ${logMessageArg}`); + console.log(`LOG => ${new Date().getHours()}:${new Date().getMinutes()}:${new Date().getSeconds()} => ${logLevelArg}: ${logMessageArg}`); } const logPackage: ILogPackage = { timestamp: Date.now(),