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

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