loggit 0.1.9

Loggit is a lightweight, easy-to-use logging library for Rust.
Documentation
1
2
3
4
5
6
7
8
9
10
11
//! Infrastructure for log file output.
//!
//! This module groups together helpers responsible for formatting log file
//! names, managing file rotation and compression, and writing log entries to
//! disk.

pub(crate) mod file_formatter;
pub(crate) mod file_manager;
pub(crate) mod file_name;

// FileName