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
8
9
10
11
#[test]
fn compile_fail() {
    let t = trybuild::TestCases::new();

    t.compile_fail("tests/compile-fail/logging-macro-*.rs");
    t.compile_fail("tests/compile-fail/pattern-macro-*.rs");
    #[cfg(feature = "runtime-pattern")]
    t.compile_fail("tests/compile-fail/pattern-runtime-macro-*.rs");
    #[cfg(not(feature = "runtime-pattern"))]
    t.compile_fail("tests/compile-fail/pattern-runtime-disabled.rs");
}