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...
Compiling with g++ I get the following compiler warnings: ```make /usr/include/easylogging++.cc: In member function ‘el::Logger* el::base::RegisteredLoggers::get(const std::string&, bool)’: /usr/include/easylogging++.cc:1900:83: warning: loop variable ‘h’ of type ‘const std::pair&’ binds to a...
I use such setup flow: ``` QString filePath = ":/qml/test_conf.conf"; QFile file(filePath); if (!file.open(QIODevice::ReadOnly | QIODevice::Text)) { qDebug()
easyloggingpp from vcpkg seems to throw during INITIALIZE_EASYLOGGINGPP when used in a static build on Windows with thread-safe feature enabled. The error involves heap allocation. It is a 64 bit...
In win10, if `FILENAME` in the global configuration file `.conf` is a file inside some folder: `FILENAME = "log/name.txt"` and folder doesn't exist yet, then the folder and the file...
if `el::Loggers::addFlag(el::LoggingFlag::AutoSpacing);` then `LOG(INFO)
could someone provide example how to put all performance logging into a file `a1.txt`? looks like this example is doing something different and more complicated: https://github.com/abumq/easyloggingpp/blob/master/samples/STL/custom-performance-output.cpp I have not understood...
I'm not reporting a bug, I'm just looking for plain information about easyloggingpp in general. I'm looking for a lightweight, fast, and thread-safe logger which for an embedded device. I...
fix class Registry copy constructor error ### This is a - [ ] Breaking change - [ ] New feature - [x] Bugfix ### I have - [x] Merged in...
ELPP will now support --verbose which will set maximum verbosity or with a specified level (both in short and long option form): * --v=2 * --verbose=2 * --verbose (sets verbosity...
### This is a - [ ] Breaking change - [x] New feature - [ ] Bugfix ### I have - [x] Merged in the latest upstream changes - [x]...