trace

Macro trace 

Source
macro_rules! trace {
    ($format_str:literal $(, $arg:expr)* $(,)?) => { ... };
    ([$($format_str:literal),+ $(,)?] $(, $arg:expr)* $(,)?) => { ... };
}
Expand description

Like log::trace, but bunt-compatible.

ยงExample

use bunt_logger::trace;

let v = vec![1, 2, 3];
trace!("{$italic}Watch the mouse!{/$}.");