Macro debug

Source
macro_rules! debug {
    (target: $target:expr, $($arg:tt)+) => { ... };
    ($($arg:tt)+) => { ... };
}
Available on crate feature dep_log only.
Expand description

log Logs a message at the indicated level.

Re-exported from the log crate .


Logs a message at the debug level.

§Examples

use log::debug;

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

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