NanoLog icon indicating copy to clipboard operation
NanoLog copied to clipboard

Nanolog is an extremely performant nanosecond scale logging system for C++ that exposes a simple printf-like API.

Results 38 NanoLog issues
Sort by recently updated
recently updated
newest added

Hi, @syang0 We're going to use nanolog as our logging library, but we found that the file used for logging will never be rolled over. This makes it hard for...

Hi, We are building C++ application where we need to log to multiple files. Pleas let me know how i can achieve this using NanoLog. Thanks

In `runtime/GNUmakefile`, dependency generation uses the following `sed` script to generate dependencies for sources used in tests: `sed 's|[a-zA-Z0-9_-]*\.o|$(TEST_BUILD_DIR)/&|' ./.depend >> ./.depend` See https://github.com/PlatformLab/NanoLog/blob/2a94d70f9d1db4da416053b1b926387fa068a59b/runtime/GNUmakefile#L76 . The issue with this script...

From comments of the new test case added in NanoLogCpp17test.cc: // This test is mainly intended to ensure that the constexpr implementation // of getNumNibblesNeeded shall not exceed the maximum...

NanoLog is a very impressive logger that does what many other loggers don't quite achieve, like writing logged data directly into string buffers instead of using various intermediate variables, or...

Is there capability such that the file size does not very large? Perhaps some ability to roll the file once it becomes 10GB in size?

Is it supported or is it possible to implement: online decompressor (that not runs on an entire file and can be used while we logging)? E.G to support streaming online...