Expand description
Extension trait to log properties of a command
§Example
let output = Command::new("echo")
.arg("x")
.log_args(Level::Debug)
.log_status(Level::Info)
.log_stdout(Level::Trace)
.log_stderr(Level::Warn)
.output()?;