Skip to main content

verbosity_log

Macro verbosity_log 

Source
macro_rules! verbosity_log {
    ($level:expr, $($arg:tt)*) => { ... };
}
Expand description

Emit a formatted verbosity message through the global diagnostics backend.

This macro is a convenience wrapper over emit_verbosity_line. It accepts a Verbosity level plus format!-style arguments.

ยงExample

use copp::diag::Verbosity;

copp::verbosity_log!(Verbosity::Summary, "solver finished in {:.3} ms", 12.34);