Macro plog::ok

source ·
macro_rules! ok {
    ($($args:tt)+) => { ... };
}
Expand description

Success logger, for things that is working. The “release version” of plog::debug! Also works on debug_assert

let x = 5;
plog::ok!("x was initialized as {x}");