spdlog-rs 0.5.3

Fast, highly configurable Rust logging crate, inspired by the C++ logging library spdlog
Documentation
//! This module provides all the built-in patterns.

mod datetime;
mod eol;
mod full;
mod kv;
mod level;
mod logger_name;
mod payload;
mod process_id;
mod srcloc;
mod style_range;
mod thread_id;

pub use datetime::*;
pub use eol::*;
pub use full::*;
pub use kv::*;
pub use level::*;
pub use logger_name::*;
pub use payload::*;
pub use process_id::*;
pub use srcloc::*;
pub use style_range::*;
pub use thread_id::*;