here_debug

Macro here_debug 

Source
macro_rules! here_debug {
    () => { ... };
    ($msg:literal) => { ... };
    ($msg:literal, $($args:expr),+) => { ... };
}
Available on crate feature log only.
Expand description

Logs the line number and filename using log::$level!. Additionally, it can accept a string literal and format arguments like the format! macro.