tracing-ez 0.1.0

A simplified interface to tracing
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
# An easy interface to tracing

```rust
use tracing_ez::{span, info};

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

```