2025-09-17 06:55:39 +09:00
|
|
|
//! Runner tracing helpers (verbose-guarded)
|
2025-09-17 05:56:33 +09:00
|
|
|
|
2025-09-17 06:55:39 +09:00
|
|
|
/// Return whether CLI verbose logging is enabled
|
|
|
|
|
pub fn cli_verbose() -> bool { crate::config::env::cli_verbose() }
|
2025-09-17 05:56:33 +09:00
|
|
|
|
2025-09-17 06:55:39 +09:00
|
|
|
#[macro_export]
|
|
|
|
|
macro_rules! cli_v {
|
|
|
|
|
($($arg:tt)*) => {{
|
|
|
|
|
if crate::config::env::cli_verbose() { eprintln!($($arg)*); }
|
|
|
|
|
}};
|
2025-09-17 05:56:33 +09:00
|
|
|
}
|
|
|
|
|
|