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