Files
hakorune/src/runner/trace.rs

13 lines
306 B
Rust
Raw Normal View History

//! Runner tracing helpers (verbose-guarded)
/// Return whether CLI verbose logging is enabled
pub fn cli_verbose() -> bool { crate::config::env::cli_verbose() }
#[macro_export]
macro_rules! cli_v {
($($arg:tt)*) => {{
if crate::config::env::cli_verbose() { eprintln!($($arg)*); }
}};
}