diff --git a/xtask/src/run.rs b/xtask/src/run.rs index afa6928..86f16d7 100644 --- a/xtask/src/run.rs +++ b/xtask/src/run.rs @@ -60,6 +60,7 @@ pub fn run(opts: Options) -> Result<(), anyhow::Error> { // spawn the command let err = Command::new(args.get(0).expect("No first argument")) .args(args.iter().skip(1)) + .env("RUST_LOG", "info") .exec(); // we shouldn't get here unless the command failed to spawn