macro_rules! eprintln {
() => { ... };
($($arg:tt)*) => { ... };
}Expand description
Like eprintln! but routes to the global LoggerManager at DEBUG level.
Falls back to std::eprintln! when no global logger is registered.
macro_rules! eprintln {
() => { ... };
($($arg:tt)*) => { ... };
}Like eprintln! but routes to the global LoggerManager at DEBUG level.
Falls back to std::eprintln! when no global logger is registered.