easyloggingpp
easyloggingpp copied to clipboard
C++ logging library. It is extremely powerful, extendable, light-weight, fast performing, thread and type safe and consists of many built-in features. It provides ability to write logs in your own cus...
got stuck using threading and c++/cli at the same time. #include mutex doesn't work with c++/cli; it's, however, essential whe ELPP_THREAD_SAFE is defined. Any chance both can co-exist?
Hi. i'm using configuration file to config easylogginpp: https://github.com/amrayn/easyloggingpp#using-configuration-file It would be awesome to have this ability to disable specific logs through this config file, like these macros: https://github.com/amrayn/easyloggingpp#configuration-macros Edit:...
It's a nice feature to have this capability that store logs in archive files. like this: https://github.com/pymumu/tinylog
For example: ``` C++ char* text1 = strdup("test string"); char* text2 = NULL; LOG(INFO)
I upgraded easylogging to the version from git master. Previously our application was using the header-only version 9.89. Now, the application crashes in INITIALIZE_EASYLOGGING with: ``` malloc.c:2379: sysmalloc: Assertion `(old_top...
The required CMake min version is going to be deprecated in future CMake Versions. https://github.com/amrayn/easyloggingpp/blob/883afc0a8f08635c38e2412a7361df20171c2acd/CMakeLists.txt#L1 I think a slight bump to 2.8.12 should not break anything and makes newer CMake...
This is just the same pull request like #646 , but with the develop-branch.
We are using the asynchronous experimental mode. It works great when using VS 2019. When using VS 2017, a deadlock happens on the thread start, in the method AsyncDispatchWorker::start. at...
clang-10 prints this warning that looks potentially damaging: ``` In file included from /usr/ports/devel/easyloggingpp/work/easyloggingpp-9.97.0/test/main.cc:27: /usr/ports/devel/easyloggingpp/work/easyloggingpp-9.97.0/test/syslog-test.h:9:36: warning: object backing the pointer will be destroyed at the end of the full-expression [-Wdangling-gsl]...
Logging file doesn’t get created on Mac while on Ubuntu, Debian and Fedora it works. How to debug the issue? Thanks