Skip to content

Commit d78b731

Browse files
committed
clean up
1 parent 20925f5 commit d78b731

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

packages/core/src/shared/lsp/utils/platform.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ export async function validateNodeExe(nodePath: string, lsp: string, args: strin
4141
}
4242

4343
// Check that we can start `node …/lsp.js --stdio …`.
44-
const lspProc = new ChildProcess(nodePath, [lsp, ...args])
44+
const lspProc = new ChildProcess(nodePath, [lsp, ...args], { logging: 'no' })
4545

4646
try {
4747
// Start asynchronously (it never stops; we need to stop it below).

0 commit comments

Comments
 (0)