macro_rules! error { ($($arg:tt)+) => { ... }; () => { ... }; }
use fvm_std::error; error!("hello"); error!("hello {}", "error"); error!();