Initial commit

This commit is contained in:
2019-02-27 10:40:43 +01:00
parent c5a55098b6
commit e26bdf412e
6 changed files with 120 additions and 8 deletions
+14
View File
@@ -0,0 +1,14 @@
#[macro_use]
extern crate log;
fn main() {
beautylog::init(log::LevelFilter::Trace).ok();
info!("some information");
warn!("something went wrong");
debug!("some debug info");
trace!("yo");
error!("something went horribly wrong");
}