slackbuilds_ponce/development/spdlog/README
Andre Barboza b096d886bc development/spdlog: Added (C++ logging library).
Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
2017-01-11 01:52:50 +07:00

20 lines
774 B
Text

spdlog is very fast, header only, C++ logging library.
Features:
- Very fast - performance is the primary goal (see benchmarks below).
- Headers only, just copy and use.
- Feature rich call style using the excellent fmt library.
- Extremely fast asynchronous mode (optional) - using lockfree queues
and other tricks to reach millions of calls/sec.
- Custom formatting.
- Multi/Single threaded loggers.
- Various log targets:
- Rotating log files.
- Daily log files.
- Console logging (colors supported).
- syslog.
- Windows debugger (OutputDebugString(..))
- Easily extendable with custom log targets (just implement a single
function in the sink interface).
- Severity based filtering - threshold levels can be modified in
runtime as well as in compile time.