diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/main.rs | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/main.rs b/src/main.rs index ab6696f..f08f75e 100644 --- a/src/main.rs +++ b/src/main.rs @@ -27,6 +27,7 @@ fn start() -> anyhow::Result<()> { let mut cmd = Command::new(service.path()); cmd.stdout(Stdio::piped()); + cmd.stderr(Stdio::piped()); match cmd.spawn() { Ok(child) => { |