Skip to main content

println

Macro println 

Source
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.