From 162e0de27a1a210ee4000c09f493a5f0c3f0224a Mon Sep 17 00:00:00 2001 From: Matthias Seitz Date: Sun, 11 Sep 2022 23:42:57 +0200 Subject: [PATCH] chore: inherit stderr (#1689) --- ethers-core/src/utils/anvil.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ethers-core/src/utils/anvil.rs b/ethers-core/src/utils/anvil.rs index 05cfabed..06fc1bdb 100644 --- a/ethers-core/src/utils/anvil.rs +++ b/ethers-core/src/utils/anvil.rs @@ -214,7 +214,7 @@ impl Anvil { } else { Command::new("anvil") }; - cmd.stdout(std::process::Stdio::piped()); + cmd.stdout(std::process::Stdio::piped()).stderr(std::process::Stdio::inherit()); let port = if let Some(port) = self.port { port } else { unused_port() }; cmd.arg("-p").arg(port.to_string());