fast_log 1.5.24

Rust async log High-performance asynchronous logging
Documentation
#![forbid(unsafe_code)]
#![allow(unused_variables)]
#![allow(unused_assignments)]
#![allow(unused_must_use)]

extern crate core;

pub mod appender;
pub mod bencher;
pub mod config;
pub mod consts;
pub mod error;
pub mod fast_log;
pub mod filter;
pub mod plugin;
pub mod runtime;

pub use crate::config::Config;
pub use crate::fast_log::*;
pub use runtime::*;