MCPcopy Create free account
hub / github.com/bootc-dev/bootc / log_debug

Method log_debug

crates/utils/src/command.rs:162–168  ·  view source on GitHub ↗

Output a debug-level log message with this command.

(&mut self)

Source from the content-addressed store, hash-verified

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

Callers 13

runMethod · 0.80
run_get_stringMethod · 0.80
run_findmntFunction · 0.80
install_via_bootupdFunction · 0.80
install_systemd_bootFunction · 0.80
install_via_ziplFunction · 0.80
selinux_ensure_installFunction · 0.80
adjust_etc_containersFunction · 0.80
blkid_probeFunction · 0.80
list_parentsMethod · 0.80

Calls

no outgoing calls

Tested by

no test coverage detected