use libcros::{LOG, LOG_DBG, LOG_FATAL, LOG_FATAL_NOEXIT, Logger};
fn main() {
Logger::init(true, true);
LOG!("This is an regular log");
LOG_DBG!("This is a verbose log");
LOG_FATAL_NOEXIT!("This is a fatal log but will not automatically exit the program.");
LOG_FATAL!("This is a fatal log and will automatically exit the program.");
}