spdlog-rs 0.5.3

Fast, highly configurable Rust logging crate, inspired by the C++ logging library spdlog
Documentation
1
2
3
4
5
6
7
use spdlog::formatter::runtime_pattern;

fn runtime_pattern() {
    runtime_pattern!("{logger}");
}

fn main() {}