tracing-ez 0.1.0

A simplified interface to tracing
Documentation

An easy interface to tracing

use tracing_ez::{span, info};

fn main() {
    tracing_ez::set_global_default_stdout();
    span!("main");
    info!("Hello, world!");
}