Macro debug

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

§Examples

use fvm_std::debug;
debug!("hello");
debug!("hello {}", "debug");
debug!();