文件名称:cxx-logger:简单的C ++控制台日志记录系统
文件大小:60KB
文件格式:ZIP
更新时间:2024-05-13 12:31:46
C++
喷泉 一个简单的跨平台C ++信息记录库。 它依赖于ascii转义序列,因此,如果使用Windows,则需要Windows 10。 例子 // contents of main.cpp # define HIRZEL_FOUNTAIN_IMPLEMENTATION # include < hirzel> using namespace hirzel ; int main () { fountain::init ( true , true , " ./report.log " , 15 ); INFO ( " This is an info message " ); ERROR ( " This is a formatted %s \n " , " error message " ); fountain::dump (); // puts
【文件预览】:
cxx-logger-master
----.gitignore(21B)
----README.md(597B)
----test()
--------main.cpp(403B)
--------main(192KB)
--------test.sh(66B)
--------other.cpp(319B)
--------other.h(53B)
----LICENSE(1KB)
----include()
--------hirzel()