easyloggingpp icon indicating copy to clipboard operation
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...

Results 160 easyloggingpp issues
Sort by recently updated
recently updated
newest added

This simple program deadlocks on line 7 (logging in function): ``` c++ #define ELPP_THREAD_SAFE #include "easylogging++.h" INITIALIZE_EASYLOGGINGPP std::string test() { LOG(INFO)

bug
accepted

Hi, I am trying to build easyloggingpp on Ubuntu 22.4 (WSL2) with Gcc 12.1.0. The CMake configuration fails with following message: ``` CMake Warning (dev) at /opt/stow/cmake-3.24.3-linux-x86_64/share/cmake-3.24/Modules/FindPackageHandleStandardArgs.cmake:438 (message): The package...

The latest version of gtest (1.13.0) requires C++14, but easyloggingpp compiles and runs its tests as C++11. ``` In file included from /usr/include/gtest/gtest-message.h:57, from /usr/include/gtest/gtest-assertion-result.h:46, from /usr/include/gtest/gtest.h:64, from /builddir/build/BUILD/easyloggingpp-8489989bb26c6371df103f6cbced3fbee1bc3c2f/test/test.h:11, from...

When build **easylogging++** with `-DELPP_EXPERIMENTAL_ASYNC` to enable async logging, `Storage` constructor will call `m_asyncDispatchWorker->start()` which creates a worker thread and `join()` it. Now the `Storage` constructor will not return until...

I'm using the latest code [8489989](https://github.com/amrayn/easyloggingpp/commit/8489989bb26c6371df103f6cbced3fbee1bc3c2f) and enable all gcc warnings and it reports -Wrange-loop-construct warnings in sentence " for (const std::pair

Several options are added in the CMakeLists.txt from CCI used when creating the conan package: https://github.com/conan-io/conan-center-index/pull/14332/files#diff-ea375b62cb31e3394d050d0bb1267949c9abe74b84e714056725e1a28ce4ce3fR35 They should instead be included in the build script for this project so that...

Hi all, When I build and make the file. There is a problem like ` $ make Scanning dependencies of target easyloggingpp-unit-tests [ 33%] Building CXX object CMakeFiles/easyloggingpp-unit-tests.dir/src/easylogging++.cc.o [ 66%]...

Hi! I try compile my project on Qt 6.4.0 but failed. I added QT += core5compat to my .pro-file but it didn't help. easyloggingpp/src/easylogging++.h:444:13: fatal error: QLinkedList: No such file...

I was debugging an app that uses cxxopts and easyloggingpp and realized that the easy logging setup was not respecting `--verbose=9` but it does work with `-v 9` or `--verbose...

Later versions of cmake generate the following warning when compiling easyloggingpp: CMake Warning (dev) at CMakeLists.txt:3 (project): Policy CMP0048 is not set: project() command manages VERSION variables. Run "cmake --help-policy...