From 55c65cc3ae1ce3b48e594fc57157f6e2b1001af3 Mon Sep 17 00:00:00 2001 From: Shane Utt Date: Fri, 23 Sep 2022 12:51:01 -0400 Subject: [PATCH] fix: enable info logging for xtask run --- xtask/src/run.rs | 1 + 1 file changed, 1 insertion(+) 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