recovery fix for #232699 (#233764)

recovery fix for #232699 (#233763)
release/1.95 1.95.3
Sandeep Somavarapu 2024-11-13 15:45:08 +01:00 committed by GitHub
parent bc150766ac
commit f1a4fb1014
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 4 additions and 0 deletions

View File

@ -110,6 +110,10 @@ export class SpdLogLogger extends AbstractMessageLogger implements ILogger {
}
override flush(): void {
if (this._store.isDisposed) {
return;
}
if (this._logger) {
this._logger.flush();
} else {