cirious_codex_logger 0.1.0

Structured logging library for the Cirious Codex ecosystem.
Documentation
1
2
3
4
5
6
7
8
9
10
11
#![allow(missing_docs)]

use cirious_codex_logger::{debug, error, info, trace, warn};

fn main() {
  info!("Application started successfully.");
  debug!("Debugging an internal variable: {}", 42);
  warn!("Memory usage is high.");
  error!("Failed to connect to the database.");
  trace!("Tracing execution flow.");
}