Adding close function to Logging to free resources

This commit is contained in:
Fabian 2019-04-04 22:38:34 -04:00
parent 590b0a9f13
commit 6864756573
3 changed files with 10 additions and 3 deletions

View File

@ -1,6 +1,6 @@
{
"name": "@hibas123/logging",
"version": "2.0.0",
"version": "2.0.1",
"description": "",
"main": "out/index.js",
"types": "out/index.d.ts",

View File

@ -88,6 +88,10 @@ export class LoggingBase {
}
}
public close() {
this.adapter.forEach(adapter => adapter.close ? adapter.close() : undefined);
}
public waitForSetup() {
return Promise.all(this.adapter_init);
}

View File

@ -114,4 +114,7 @@ export interface Adapter {
flush(sync: true): void;
flush(sync: false): void | Promise<void>;
close?(): void;
}