Log webdriver command we execute

This commit is contained in:
Alex Crichton 2019-03-05 09:33:22 -08:00
parent 9063a6b701
commit bdcfcb49b1

View File

@ -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))?;