diff --git a/editors/code/src/ctx.ts b/editors/code/src/ctx.ts index 51781b4205c..f4f8c5b73e2 100644 --- a/editors/code/src/ctx.ts +++ b/editors/code/src/ctx.ts @@ -43,6 +43,8 @@ export class Ctx { const res = new Ctx(config, extCtx, client, serverPath, statusBar); res.pushCleanup(client.start()); + res.pushCleanup(client.traceOutputChannel); + res.pushCleanup(client.outputChannel); await client.onReady(); client.onNotification(ra.serverStatus, (params) => res.setServerStatus(params)); return res;