Macro critical

Source
macro_rules! critical {
    ($($arg:tt)+) => { ... };
    () => { ... };
}
Expand description

CRITICAL ERROR WARNING NOTICE INFO DEBUG

§Examples

use fvm_std::critical;
fn main() {
 critical!("hello");
 critical!("hello {}", "critical");
 critical!();
}