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 is a - [ ] Breaking change - [x] New feature - [x] Bugfix ### I have - [ ] Merged in the latest upstream changes - [x]...

google test DEATH_TEST* macros match the standard error output (stderr/cerr) against a given regex string in order to verify a death test FATAL (and ERROR) logging levels write to standard...

[Here](https://github.com/amrayn/easyloggingpp/blob/master/src/easylogging%2B%2B.h#L265) I had to replace `#if ELPP_COMPILER_INTEL` by `#if defined(ELPP_COMPILER_INTEL)` for VC++

For the `typdef .... ::iterator iterator` [here](https://github.com/weaselp/easyloggingpp/blob/master/src/easylogging%2B%2B.h#L1371) you should replace `Registry` with the base class type `AbstractRegistry`. At least VC++ complained.

Although the easyloggingpp filename option can include dynamic date/time elements, for example: ``` el::Configurations conf; conf.setToDefault(); conf.setGlobally(el::ConfigurationType::Filename, "app-%datetime{%d-%H-%m}.log" ); ``` the log file name actually used seems to be a...

Would it be possible to set a custom timestamp when logging using one of the macros? E.g: ```cpp LOG(INFO, myTimeStamp)

yeah~ already have options for rotation log file. but, i can't find any daily rotation option. do you have any plan for this?

Your library has saved me so much time, and helped me find so many application related bugs over the past few years. **Thank you!** What follows is a Windows only...

Hi, I'm getting segmentation fault when running multiple loggers via multiple threads. This is similar to issue #580 I have used the new version v.9.96.7 which supposedly fixes this issue...