fix(core): update

This commit is contained in:
2020-06-08 18:51:11 +00:00
parent 3fbd87cab1
commit 9c79a26d04
4 changed files with 34 additions and 8 deletions

View File

@ -0,0 +1,10 @@
import * as plugins from './smartlog.plugins';
/**
* a console log optimized for smartlog
*/
export class ConsoleLog {
public log(logLevelArg: plugins.smartlogInterfaces.TLogLevel, logMessageArg: string) {
console.log(`__# ${logLevelArg}: ${logMessageArg}`);
}
}