[−][src]Macro log::debug
Logs a message at the debug level.
Examples
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);
Logs a message at the debug level.
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);