We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents e5c9502 + 13bf590 commit 1497187Copy full SHA for 1497187
src/vs/workbench/contrib/terminal/electron-sandbox/localTerminalBackend.ts
@@ -298,8 +298,8 @@ class LocalTerminalBackend extends BaseTerminalBackend implements ITerminalBacke
298
mark('code/terminal/didSetTerminalLayoutInfo');
299
this._storageService.remove(TerminalStorageKeys.TerminalLayoutInfo, StorageScope.WORKSPACE);
300
}
301
- } catch {
302
- // no-op
+ } catch (e: unknown) {
+ this._logService.warn('LocalTerminalBackend#getTerminalLayoutInfo Error', e && typeof e === 'object' && 'message' in e ? e.message : e);
303
304
305
0 commit comments