1 2 3 4 5 6
use tracing::*; fn main() { tracing_config::init!(); // panics; read the docs on why and when. let _main_info_span = info_span!("main").entered(); info!("Hello World"); }