rakhas_logger 0.1.0

Async logging library with batch processing and graceful shutdown
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
//! Async logging library with batch processing and graceful shutdown

pub mod config;
pub mod core;
pub mod error;
pub mod formatter;
pub mod handlers;

// Re-export main types for convenience
pub use config::{LoggerConfig, MOSCOW_ZONE};
pub use error::LoggerError;
pub use handlers::logger_handler::{LoggerHandle, stop_logger_gracefully};

// For backward compatibility
pub use formatter::format_log_message as format_for_log;