use log::*;
fn main() {
clang_log::init_error(Level::Trace, Level::Error, "clang_log_example");
trace!("Test log");
debug!("Debug information: {}", 5);
info!("This is helpful information");
warn!("Something went wrong, but it's not horrible");
error!("Something is terribly wrong.");
}