From 27bb9a789c25e7844891ae654a0106dea44c68a0 Mon Sep 17 00:00:00 2001 From: Phil Kunz Date: Thu, 11 Jun 2020 13:23:07 +0000 Subject: [PATCH] fix(core): update --- ts/smartlog.classes.consolelog.ts | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/ts/smartlog.classes.consolelog.ts b/ts/smartlog.classes.consolelog.ts index 054d159..9d1f419 100644 --- a/ts/smartlog.classes.consolelog.ts +++ b/ts/smartlog.classes.consolelog.ts @@ -4,7 +4,12 @@ import * as plugins from './smartlog.plugins'; * a console log optimized for smartlog */ export class ConsoleLog { - public log(logLevelArg: plugins.smartlogInterfaces.TLogLevel, logMessageArg: string) { + public log( + logLevelArg: plugins.smartlogInterfaces.TLogLevel, + logMessageArg: string, + dataArg?: any, + correlationArg?: plugins.smartlogInterfaces.ILogCorrelation + ) { console.log(`__# ${logLevelArg}: ${logMessageArg}`); } }