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