From bdcfcb49b1a3c877aad5f20f3652e9591a9b3b6b Mon Sep 17 00:00:00 2001 From: Alex Crichton Date: Tue, 5 Mar 2019 09:33:22 -0800 Subject: [PATCH] Log webdriver command we execute --- crates/cli/src/bin/wasm-bindgen-test-runner/headless.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/crates/cli/src/bin/wasm-bindgen-test-runner/headless.rs b/crates/cli/src/bin/wasm-bindgen-test-runner/headless.rs index fc695fbe..1b2965c2 100644 --- a/crates/cli/src/bin/wasm-bindgen-test-runner/headless.rs +++ b/crates/cli/src/bin/wasm-bindgen-test-runner/headless.rs @@ -506,6 +506,7 @@ impl<'a> BackgroundChild<'a> { cmd.stdout(Stdio::piped()) .stderr(Stdio::piped()) .stdin(Stdio::null()); + log::debug!("executing {:?}", cmd); let mut child = cmd .spawn() .context(format!("failed to spawn {:?} binary", path))?;