We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 02b849a commit 6ed030dCopy full SHA for 6ed030d
crates/ra_proc_macro/src/process.rs
@@ -55,8 +55,11 @@ impl Process {
55
56
fn restart(&mut self) -> Result<(), io::Error> {
57
let _ = self.child.kill();
58
- self.child =
59
- Command::new(self.path.clone()).stdin(Stdio::piped()).stdout(Stdio::piped()).spawn()?;
+ self.child = Command::new(self.path.clone())
+ .stdin(Stdio::piped())
60
+ .stdout(Stdio::piped())
61
+ .stderr(Stdio::null())
62
+ .spawn()?;
63
Ok(())
64
}
65
0 commit comments