fix(core): update

This commit is contained in:
2020-06-11 10:47:05 +00:00
parent 3575262001
commit 4113a9a211
3 changed files with 6 additions and 6 deletions

View File

@ -129,8 +129,8 @@ export class Smartlog implements plugins.smartlogInterfaces.ILogDestination {
});
}
public handleLog(logPackageArg: plugins.smartlogInterfaces.ILogPackage) {
this.logRouter.routeLog(logPackageArg);
public async handleLog(logPackageArg: plugins.smartlogInterfaces.ILogPackage) {
await this.logRouter.routeLog(logPackageArg);
}
private safeConsoleLog(logLine: string) {