fix(core): update

This commit is contained in:
2019-10-22 15:11:40 +02:00
parent 7ec6579cc3
commit 7cd739ff23
7 changed files with 63 additions and 65 deletions

View File

@ -44,7 +44,11 @@ export class Smartlog {
* @param logMessageArg - the log message
* @param logDataArg - any additional log data
*/
public log(logLevelArg: plugins.smartlogInterfaces.TLogLevel, logMessageArg: string, logDataArg?: any) {
public log(
logLevelArg: plugins.smartlogInterfaces.TLogLevel,
logMessageArg: string,
logDataArg?: any
) {
if (this.consoleEnabled) {
console.log(
`LOG => ${new Date().getHours()}:${new Date().getMinutes()}:${new Date().getSeconds()} => ${logLevelArg}: ${logMessageArg}`

View File

@ -1,5 +1,3 @@
import * as smartlogInterfaces from '@pushrocks/smartlog-interfaces';
export {
smartlogInterfaces
};
export { smartlogInterfaces };