Output a debug-level log message with this command.
(&mut self)
| 160 | |
| 161 | /// Output a debug-level log message with this command. |
| 162 | fn log_debug(&mut self) -> &mut Self { |
| 163 | // We unconditionally log at trace level, so avoid double logging |
| 164 | if !tracing::enabled!(tracing::Level::TRACE) { |
| 165 | tracing::debug!("exec: {self:?}"); |
| 166 | } |
| 167 | self |
| 168 | } |
| 169 | |
| 170 | fn run_get_output(&mut self) -> Result<Box<dyn std::io::BufRead>> { |
| 171 | let mut stdout = tempfile::tempfile()?; |
no outgoing calls
no test coverage detected