From babeeb62dbdb620a735f073af1d704e25460448c Mon Sep 17 00:00:00 2001 From: Meng Rao <278307367@qq.com> Date: Sun, 16 May 2021 13:24:53 +0800 Subject: [PATCH] Add fmtlog to logging fmtlog is a performant asynchronous logging library using fmt library format. It's easy to use and might be the fastest C++ logging lib so far. --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index fa88cbd..f2c9e24 100644 --- a/README.md +++ b/README.md @@ -594,6 +594,7 @@ A curated list of awesome C++ (or C) frameworks, libraries, resources, and shiny * [Blackhole](https://github.com/3Hren/blackhole) - Attribute-based logging framework, which is designed to be fast, modular and highly customizable. [MIT] * [Boost.Log](http://www.boost.org/doc/libs/1_56_0/libs/log/doc/html/index.html) - Designed to be very modular and extensible. [Boost] * [Easylogging++](https://github.com/easylogging/easyloggingpp) - Extremely light-weight high performance logging library for C++11 (or higher) applications. [MIT] [website](https://muflihun.github.io/easyloggingpp) +* [fmtlog](https://github.com/MengRao/fmtlog) - A performant fmtlib-style logging library with latency in nanoseconds. [MIT] * [G3log](https://github.com/KjellKod/g3log) - Asynchronous logger with Dynamic Sinks. [PublicDomain] * [glog](https://github.com/google/glog) - C++ implementation of the Google logging module. * [Log4cpp](http://log4cpp.sourceforge.net/) - A library of C++ classes for flexible logging to files, syslog, IDSA and other destinations. [LGPL]