lyte-observer 1.0.0

A thin wrapper around my most commonly-used crates for error handling and reporting, tracing, observability, logs, etc.
Documentation
1
2
3
4
5
6
7
8
use lyte_observer::prelude::*;

fn main() -> Result<()> {
    observe_info()?;
    info!("Hello, world!");
    debug!("This won't show up, though.");
    Ok(())
}