A logger that prints log messages to configured output channels on the Wii U. It is the Rust alternative to the WHBLog functions in wut.
use cafe_logger::CafeLogger;
fn main() {
CafeLogger::new().init().unwrap();
log::warn!("This is an example message.");
}