diff options
author | veetaha <[email protected]> | 2020-04-22 23:57:02 +0100 |
---|---|---|
committer | veetaha <[email protected]> | 2020-04-22 23:57:02 +0100 |
commit | b5620341fc5843d14bdafb0e996a1d8839039cea (patch) | |
tree | 235f83ffbaaeae99273ce9d8aec882f08eaadb8a /crates | |
parent | 3f1f3a835a07983344f6f3becf7a0c32b96d68bc (diff) |
proc_macro: add ability to log to stderr and view output in vscode
Diffstat (limited to 'crates')
-rw-r--r-- | crates/ra_proc_macro/src/process.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/crates/ra_proc_macro/src/process.rs b/crates/ra_proc_macro/src/process.rs index 673f80a7a..5bcdacb48 100644 --- a/crates/ra_proc_macro/src/process.rs +++ b/crates/ra_proc_macro/src/process.rs | |||
@@ -189,7 +189,7 @@ fn mk_child(path: &Path, args: impl IntoIterator<Item = impl AsRef<OsStr>>) -> i | |||
189 | .args(args) | 189 | .args(args) |
190 | .stdin(Stdio::piped()) | 190 | .stdin(Stdio::piped()) |
191 | .stdout(Stdio::piped()) | 191 | .stdout(Stdio::piped()) |
192 | .stderr(Stdio::null()) | 192 | .stderr(Stdio::inherit()) |
193 | .spawn() | 193 | .spawn() |
194 | } | 194 | } |
195 | 195 | ||