doric 0.1.0

A highly simple asynchronous logging lib for Rust.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
use crate::encode::encoder;

#[derive(Debug, Clone)]
pub struct LoggerConfig {
    pub path: String,
    pub max_size: u64,
    pub max_segments: usize,
    pub log_type: encoder::EncoderType,
}

pub mod console;
pub mod extend;
pub mod material;