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

Hello ,thank you for the nice code. In my software, I don't have the console. How to display the log info using easylogingpp? Regards,

# Implementation ```c++ #include "easylogging++/easylogging++.h" INITIALIZE_EASYLOGGINGPP #define THREAD_COUNT 5 int main(void) { std::thread threads[THREAD_COUNT]; for (int i = 0; i < THREAD_COUNT; i++) { threads[i] = std::thread([]() { for (int...

Hi, Sorry if this is not the right place to ask for this, I am in urgent need for an answer. I need to get line number and filename in...

[An extra null pointer check is not needed in functions](https://isocpp.org/wiki/faq/freestore-mgmt#delete-handles-null "Do I need to check for null before delete p?") like the following. - [PartProcessor::closeFiles](https://github.com/amrayn/easyloggingpp/blob/8489989bb26c6371df103f6cbced3fbee1bc3c2f/samples/Qt/file-splitter-joiner/partprocessor.cpp#L44 "PartProcessor::closeFiles function") - [safeDelete](https://github.com/amrayn/easyloggingpp/blob/8489989bb26c6371df103f6cbced3fbee1bc3c2f/src/easylogging%2B%2B.h#L861 "safeDelete...

For some reason the latest version is 9.97.1 but it was never updated in the code. ### This is a - [ ] Breaking change - [ ] New feature...

According to modern CMake you should rather provide a `easyloggingppConfig.cmake` than a `FindEASYLOGGINGPP.cmake`, which should be installed when `make install` is executed. This would enhance the useability of this project,...

Crash on all define configurations and on linux/win. [MCV](https://gitlab.com/n1helps/el_bug) [Crash dump](https://gitlab.com/n1helps/el_bug/builds/18454287) ``` C++ #include #include #include #include #define ELPP_NO_DEFAULT_LOG_FILE #define ELPP_THREAD_SAFE #include INITIALIZE_EASYLOGGINGPP int main(int argc, char const *argv[]){ el::Loggers::reconfigureAllLoggers(el::ConfigurationType::Filename,...

print info like "true" or "false"?

I am doing some work with Intel RealSense camera, which sdk is built with easyloggingpp(elpp). And if I use the sdk with elpp at the same time, the program will...