Skip to content

Commit

Permalink
Fix Headless LSP not starting (#513)
Browse files Browse the repository at this point in the history
  • Loading branch information
DaelonSuzuka authored Oct 15, 2023
1 parent d3b2c52 commit d8700ea
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions src/lsp/ClientConnectionManager.ts
Original file line number Diff line number Diff line change
Expand Up @@ -162,12 +162,12 @@ export class ClientConnectionManager {
});

// const lspStderr = createLogger("lsp.stderr");
// lspProcess.stderr.on('data', (data) => {
// const out = data.toString().trim();
// if (out) {
// lspStderr.debug(out);
// }
// });
lspProcess.stderr.on('data', (data) => {
// const out = data.toString().trim();
// if (out) {
// lspStderr.debug(out);
// }
});

lspProcess.on('close', (code) => {
log.info(`LSP process exited with code ${code}`);
Expand Down

0 comments on commit d8700ea

Please sign in to comment.