Macro debug

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

Advises about a debug message.

ยงExamples

use advise::debug;

let pos = Position { x: 3.234, y: -1.223 };

debug!("New position: x: {}, y: {}", pos.x, pos.y);

Produces:

debug: New position: x: 3.234, y: -1.223