Skip to content

Commit f1a4fb1

Browse files
authored
recovery fix for #232699 (#233764)
recovery fix for #232699 (#233763)
1 parent bc15076 commit f1a4fb1

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

src/vs/platform/log/node/spdlogLog.ts

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -110,6 +110,10 @@ export class SpdLogLogger extends AbstractMessageLogger implements ILogger {
110110
}
111111

112112
override flush(): void {
113+
if (this._store.isDisposed) {
114+
return;
115+
}
116+
113117
if (this._logger) {
114118
this._logger.flush();
115119
} else {

0 commit comments

Comments
 (0)