1
0
Fork 0
mirror of https://github.com/denoland/deno.git synced 2024-11-21 15:04:11 -05:00

undo stderr change

This commit is contained in:
Ryan Dahl 2022-01-17 09:37:17 -05:00
parent 0362545605
commit 259679a0d3

View file

@ -165,7 +165,7 @@ impl LspClient {
.arg("lsp")
.stdin(Stdio::piped())
.stdout(Stdio::piped())
// .stderr(Stdio::null())
.stderr(Stdio::null())
.spawn()?;
let stdout = child.stdout.take().unwrap();