mirror of
https://github.com/rust-lang/rust-analyzer
synced 2024-12-25 20:43:21 +00:00
proc_macro: add ability to log to stderr and view output in vscode
This commit is contained in:
parent
3f1f3a835a
commit
b5620341fc
1 changed files with 1 additions and 1 deletions
|
@ -189,7 +189,7 @@ fn mk_child(path: &Path, args: impl IntoIterator<Item = impl AsRef<OsStr>>) -> i
|
|||
.args(args)
|
||||
.stdin(Stdio::piped())
|
||||
.stdout(Stdio::piped())
|
||||
.stderr(Stdio::null())
|
||||
.stderr(Stdio::inherit())
|
||||
.spawn()
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue