Macro here::here_error[][src]

macro_rules! here_error {
    () => { ... };
    ($msg : literal) => { ... };
    ($msg : literal, $($args : expr), +) => { ... };
}
This is supported 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.