Macro eprintln

Source
macro_rules! eprintln {
    ($( $x:expr ),*) => { ... };
}
Expand description

Works like std::eprintln.

Prints to the standard output when running under the mgba emulator but with the error level internally This is mainly intended for debugging, and is reasonably slow.

agb::eprintln!("error: Could not load save file");