senax-logger 0.2.6

Senax logger
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
pub mod logger;

#[cfg(all(feature = "uring", target_os = "linux"))]
#[path = "log_writer_uring.rs"]
pub mod log_writer;

#[cfg(not(all(feature = "uring", target_os = "linux")))]
#[path = "log_writer.rs"]
pub mod log_writer;

pub use crate::log_writer::Rotation;
pub use crate::logger::init;