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
*/
public smartlogDestination: ILogDestination = {
handleLog: (logPackageArg) => {
this.sendSmartlogPackage(logPackageArg)
}
};
public get smartlogDestination (): ILogDestination {
return {
handleLog: (logPackageArg) => {
this.sendSmartlogPackage(logPackageArg);
}
};
}
}