Macro utils::debug

source ยท
macro_rules! debug {
    ($error:expr) => { ... };
    ($message:literal) => { ... };
    ($fmt:expr, $($arg:tt)*) => { ... };
}
Expand description

Create an error at the debug level.

The argument can be either:

  • an expression implementing Display
  • a string literal
  • a format string, similar to the format!() macro