当前位置: 首页 > 工具软件 > Simple-Log > 使用案例 >

simple_log 一个轻量的c++日志组件

岳京
2023-12-01

 

特点

  • 简洁但是功能实用
  • 只支持linux
  • 线程不安全

功能列表

  • 支持动态加载配置文件,修改日志等级
  • 支持使用脚本进行日志文件的切分

性能

  • 10万/s 日志写入

构建 && 测试

  make && make test

配置文件(可选)

  • 默认会找conf/simple_log.conf,如果没有找到,会将日志以debug级别输出到控制台
  • 如果配置了log_file,需要保证log目录已经存在
 log_level=INFO
 log_file=log/simple.log

例子:

#include "simple_log.h"

int main() {
  // init_log_config("conf/simple_log.conf"); 
  LOG_INFO("%s", "this is a info log");
  return 0;
}

编译

 g++ -I bin/include test/simple_log_test.cpp bin/lib/libsimplelog.a -o bin/simple_log_test

输出

 2014-10-25 15:43:29.216 INFO test/simple_log_test.cpp(5): this is a info log

 

 项目地址https://github.com/hongliuliao/simple_log

 

 

 类似资料: