Macro plog::error

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

An error logger, the highest importancy level, for things that will affect the program use

if 1 + 1 != 2 {
    plog::error!("wait wait wait")
}