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
12
13
14
15
16
17
error: unexpected end of input, expected identifier
 --> tests/compile-fail/pattern-runtime-macro-syntax.rs:8:87
  |
8 |     runtime_pattern!("{logger} {$custom_pat}", {$custom_pat} => custom_pat_creator, {$} => custom_pat_creator);
  |                                                                                       ^

error: unexpected token, expected `}`
 --> tests/compile-fail/pattern-runtime-macro-syntax.rs:9:93
  |
9 |     runtime_pattern!("{logger} {$custom_pat}", {$custom_pat} => custom_pat_creator, {$custom-pat2} => custom_pat_creator);
  |                                                                                             ^

error: expected identifier
  --> tests/compile-fail/pattern-runtime-macro-syntax.rs:10:87
   |
10 |     runtime_pattern!("{logger} {$custom_pat}", {$custom_pat} => custom_pat_creator, {$2custom_pat} => custom_pat_creator);
   |                                                                                       ^^^^^^^^^^^