Skip to content

Commit b562034

Browse files
committed
proc_macro: add ability to log to stderr and view output in vscode
1 parent 3f1f3a8 commit b562034

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

crates/ra_proc_macro/src/process.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -189,7 +189,7 @@ fn mk_child(path: &Path, args: impl IntoIterator<Item = impl AsRef<OsStr>>) -> i
189189
.args(args)
190190
.stdin(Stdio::piped())
191191
.stdout(Stdio::piped())
192-
.stderr(Stdio::null())
192+
.stderr(Stdio::inherit())
193193
.spawn()
194194
}
195195

0 commit comments

Comments
 (0)