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

easylogging++.h:3125: Parenthesis/brace mismatch between #if and #else branches; using #if branch easylogging++.h:3123: Unbalanced opening parenthesis in C++ code (or abuse of the C++ preprocessor) in # define ELPP_WX_HASH_MAP_ENABLED(ContainerType) MAKE_CONTAINERELPP_FRIENDLY(ContainerType, size(),...

I modifed the header file `easylogging++.h`, add `ELPP_MINGW` to make sure ELPP_EXPORT will be `__declspec(dllexport)` ```c++ #if defined(ELPP_AS_DLL) && (ELPP_COMPILER_MSVC || ELPP_MINGW) # if defined(ELPP_EXPORT_SYMBOLS) # define ELPP_EXPORT __declspec(dllexport) #...

Using current release (9.96.7). Error for this line: > std::locale elppUnicodeLocaleWindows(elppUnicodeLocale, new std::codecvt_utf8_utf16); Error | **C4996** | 'std::codecvt_utf8_utf16': warning STL4017: std::wbuffer_convert, std::wstring_convert, and the header (containing std::codecvt_mode, std::codecvt_utf8, std::codecvt_utf16, and...

my main program use easyloggingpp already

Hi, I encounter a problem when starting my C++ code. The logger caused a segmentation fault. After checking backtrace using gdb, I saw that a simple LOG(INFO) sentence in my...

Is it possible to have one `PreRollOutCallback` callback per logger? If not, how can I distinguish which logger called it? The input arguments of the `PreRollOutCallback` function are file name...

I noticed these typos while preparing the Debian package for a downstream project (Feather Wallet). They are minor, but I figured I would take the time to create a PR.