beet_core 0.0.8

Core utilities and types for other beet crates
1
2
3
4
5
6
7
8
9
10
11
12
use beet_core::prelude::*;



fn main() {
	PrettyTracing::default().init();
	trace!("This is Trace");
	info!("This is Info");
	debug!("This is Debug");
	warn!("This is Warn");
	error!("This is Error");
}