Skip to content

Commit

Permalink
Merge pull request #550 from dora-rs/quiet-up
Browse files Browse the repository at this point in the history
Spawn daemon and coordinator in quiet mode on `dora up`
  • Loading branch information
phil-opp authored Jun 12, 2024
2 parents 14ee0b6 + b158796 commit eda09cb
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions binaries/cli/src/up.rs
Original file line number Diff line number Diff line change
Expand Up @@ -85,6 +85,7 @@ fn start_coordinator() -> eyre::Result<()> {
let mut cmd =
Command::new(std::env::current_exe().wrap_err("failed to get current executable path")?);
cmd.arg("coordinator");
cmd.arg("--quiet");
cmd.spawn().wrap_err("failed to run `dora coordinator`")?;

println!("started dora coordinator");
Expand All @@ -96,6 +97,7 @@ fn start_daemon() -> eyre::Result<()> {
let mut cmd =
Command::new(std::env::current_exe().wrap_err("failed to get current executable path")?);
cmd.arg("daemon");
cmd.arg("--quiet");
cmd.spawn().wrap_err("failed to run `dora daemon`")?;

println!("started dora daemon");
Expand Down

0 comments on commit eda09cb

Please sign in to comment.