mirror of
https://github.com/godotengine/godot-vscode-plugin.git
synced 2025-12-31 13:48:24 +03:00
Fix Headless LSP not starting (#513)
This commit is contained in:
@@ -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}`);
|
||||
|
||||
Reference in New Issue
Block a user