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

Is Nanolog support arm64 systems? When I try to compile on arm64 based systems, I am getting errors, although working perfectly fine on x86-64 systems. Steps I follow `git clone...

Is there a support for windows platform in current release?

How do you use nanolog in a system? Would you need to have one decompressor per binary? It would be good if there could be one decompressor for all applications...

Hi! I'd like to use nanolog in my python project, so I use pybind11 to wrap C++ into *.so that could be imported by python directly. Can I further make...

The decompressor occassionally running into this error. If restart the decompressor (decompressUnordered mode) can continue without the error in the same binary log location. But it could happen again later,...

In this case: ```cpp NanoLog::setLogLevel(NOTICE); int val = 0; NANO_LOG(DEBUG, "This value %d won't be printed.", val++); ``` the value of `val` is still 0 because of code at line...

NANO_LOG(NOTICE, "Another message. [%*.d]", 5, 1234); we can not decompress this log.

When compressing log files in the mode of direct write to O-DIECT, there may be a problem of log compression errors that cannot be correctly decompressed. The issue was fixed...