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