Skip to main content

print

Macro print 

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