tracing-config 0.2.2

Provides a configuration file approach to initializing and configuring tracing and tracing-subscriber
Documentation
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");
}