use tracing::{debug, error, info, instrument, trace, warn_span};
pub fn run() {
#[instrument]
fn funkabloid() {
debug!("hello world!");
error!("hello world, but in an evil manner");
}
info!("woa");
{
let _s = warn_span!("hello!", two_plus_two = 2 + 2).entered();
trace!("yaaa");
funkabloid();
}
}