mtlog_core/lib.rs
1//! # mtlog-core
2//! Core utilities for mtlog - shared logging infrastructure.
3
4mod config;
5mod log_rotation;
6mod log_writer;
7mod utils;
8
9pub use config::MTLOG_CONFIG;
10pub use log_rotation::{
11 FileLogger, LogFileSizeRotation, LogFileTimeRotation, SizeRotationConfig, TimeRotationConfig,
12};
13pub use log_writer::{LogFile, LogStdout, LogWriter};
14pub use utils::{
15 LogMessage, LogSender, LoggerGuard, spawn_log_thread_file, spawn_log_thread_stdout,
16};