Skip to content

Commit 6ec6480

Browse files
bors[bot]Veetaha
andauthored
Merge #4094
4094: proc_macro: add ability to log to stderr and view output in vscode r=matklad a=Veetaha r? @edwin0cheng Co-authored-by: veetaha <[email protected]>
2 parents 604b936 + b562034 commit 6ec6480

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)