macro_rules! debugln {
    () => { ... };
    ( $format:literal $($tt:tt)* ) => { ... };
}
Expand description

Log a line to standard debugging channels.

Examples

use bugsalot::debugln;

debugln!();
debugln!("Print stuff");
debugln!("Print more stuff: {} {} {}", 1, "2", 3.0f32);

Platforms

platformmechanismnotes and caveats
Android__android_log_writeView in ADB Logcat.
WASMconsole.logView in Developer Tools (Firefox, Chrome).
WindowsOutputDebugStringABuffer size capped. View in VS’s Ouput tab, VSC’s Debug Console, DebugView, etc.
*nixstderrMay intermingle with other error reporting, subject to change.