loguru icon indicating copy to clipboard operation
loguru copied to clipboard

A lightweight C++ logging library

Results 100 loguru issues
Sort by recently updated
recently updated
newest added

I'm working on updating the `eduke32` port for OpenBSD to the latest release, which has since migrated to using loguru. When building under OpenBSD/amd64 7.1-stable, the following error is generated:...

pthread on OpenBSD is different from that on Linux, preventing compilation. The commit adds preprocessor statements to use an alternative implementation specifically on OpenBSD.

Hello, I am creating a program which will use .so and .dll libraries to provide more features and formats. Those libraries can be built separately without have the original program...

Adds comprehensive CMake support to the project (requires CMake version 3.10+) All feedback is welcome, I'm happy to answer any questions you may have. ## New Features You can now...

I want to apply this library to Android and make it available on logcat, how should I do it? Thank you very much!!

Using version v.2.1.0 and with visual studio compiler at level 3 I received the following errors: ` error C4996: 'getenv': This function or variable may be unsafe. error C4996: 'strncat':...

Hi, On Windows 10, this [line](https://github.com/emilk/loguru/blob/43a53def4ec7a9531f029fa75eae117e9964e48c/loguru.cpp#L804) failed, with the error `_SH_DENYNO` is an undeclared identifier. I solved the issue by adding the inclusion of the `share.h` file before the `fsopen`...

I've just discovered this library, and I like it quite a lot, especially the lightweight header file design is really great! I was wondering if you'd consider making the prefix...

This PR fixes issues flagged by the Clang static analyzer, Coverity, and PVS Studio. Suggest reviewing commit-by-commit, for which the following provides more background. --- ### Uninitialized member variables, flagged...

Loguru doesn't compile on Haiku, which is a "generally" complete Posix platform - but with some addons missing, like thread naming. Most of the thread naming is protected with `#if...