# minlog
**Repository Path**: qiukeke/minlog
## Basic Information
- **Project Name**: minlog
- **Description**: a simple c/c++ log
- **Primary Language**: Unknown
- **License**: Apache-2.0
- **Default Branch**: master
- **Homepage**: None
- **GVP Project**: No
## Statistics
- **Stars**: 0
- **Forks**: 4
- **Created**: 2015-01-02
- **Last Updated**: 2020-12-19
## Categories & Tags
**Categories**: Uncategorized
**Tags**: None
## README
minlog
============================================
a simple c\c++ log
---
###编译
最低支持redhat(CentOS)5.X系统
>
* Kernel 2.6
* GCC 4.1.2
###示例
```cpp
minlog::init();
minlog::setlevel(minlog::console, minlog::debug_level);
minlog::setlevel(minlog::console, minlog::info_level);
minlog::instance()->debug("hello %s", "world");
minlog::instance()->info("hello %s", "world");
minlog::fini();
```
###todo
Win支持
支持按时间和按大小配置分割
>OSC主页:[http://my.oschina.net/rangerlee](http://my.oschina.net/rangerlee)
>联系方式:[rangerlee@foxmail.com](mailto:rangerlee@foxmail.com)