tiny-tracing 0.1.0

Simple rusty log library (tracing-subscriber wrapper)
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
//! Minimal setup: text output at INFO level.
//!
//! Run with: `cargo run --example basic`

use tiny_tracing::{Logger, info};

fn main() -> Result<(), Box<dyn std::error::Error>> {
    Logger::new().init()?;

    info!("hello from tiny-tracing");
    Ok(())
}