Easylogging++ - 高性能c++日志库


MIT
跨平台
C/C++

软件简介

轻量级高性能c++日志库 (Single header only)

Easylogging++的优势是它的速度和简单。
它是轻量级的,健壮的,高性能,线程和类型安全的,它有许多内置功能。它适合在中小型项目中使用,它提供了自定义日志格式的能力,还提供对第三方库,STL容器的支持。

示例代码:

#include "easylogging++.h"

_INITIALIZE_EASYLOGGINGPP

int main(int argv, const char** argc) {
    LOG(INFO) << "Hello, world";
    return 0;
}