NanoLog
NanoLog copied to clipboard
Nanolog is an extremely performant nanosecond scale logging system for C++ that exposes a simple printf-like API.
Hello, Your logger implementation is really fast! Although we could not achieve the same performance as written in the documentation (maybe because of the difference in platform), it indeed outperform...
I learned in the hard way that NanoLog can behave very tricky when you have a typo in the format string, and the decompressor may not pick up properly from...
Not sure if you think the include folder name is OK.
Build NanoLog (cpp17) with cmake. - Added functionality to generate NanoLog.pc file, to easily integrate with other cmake based projects using PkgConfig package - Refactor: Moved unit test, decompressor and...
Can authors make a instruction so as to guide other programmers to use tihis project in the Windows environment?
do you plan to incorporate signal catching into NanoLog? Would be great to have them automatically caught and logged rather than having to deduce what went wrong, then instrument with...
The applications I'm going to logging are strictly single threaded and pinned to logical CPUs. And I read in the documentation that a background thread is used for dumping the...