aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorHimbeerserverDE <himbeerserverde@gmail.com>2023-05-11 21:00:01 +0200
committerHimbeerserverDE <himbeerserverde@gmail.com>2023-05-11 21:00:01 +0200
commita1cafc2619368c97484a126476a9d747a395f6a2 (patch)
treec1906b19095b728bca969728d7ad63419deb9cf8 /src
parent3265381289b25459f92c47a2832d8d2d00e6f83c (diff)
create child stderr
Diffstat (limited to 'src')
-rw-r--r--src/main.rs1
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) => {