loggix 1.0.4

A powerful, structured logging library for Rust inspired by Logrus. Features thread-safe logging, structured fields, custom formatters, and beautiful terminal output.
Documentation
1
2
3
4
5
6
7
8
9
use loggix::{debug, error, info, warn};

fn main() {
    // Basic logging with different levels
    debug!("Debug message");
    info!("Info message");
    warn!("Warning message");
    error!("Error message");
}