fix(core): update

This commit is contained in:
Philipp Kunz 2018-11-04 15:25:27 +01:00
parent f075f7f23a
commit c5cedb027d

View File

@ -78,9 +78,11 @@ export class LogdnaAccount {
/** /**
* returns a smartlog compatible log destination * returns a smartlog compatible log destination
*/ */
public smartlogDestination: ILogDestination = { public get smartlogDestination (): ILogDestination {
handleLog: (logPackageArg) => { return {
this.sendSmartlogPackage(logPackageArg) handleLog: (logPackageArg) => {
} this.sendSmartlogPackage(logPackageArg);
}; }
};
}
} }