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

When building an automatic unit test with Qt Creator and Qt 5.12.5, a link error occurs when doing QString first("12345"); LOG(info)

template class ScopedLock : base::NoCopy { public: explicit ScopedLock(M& mutex) { m_mutex = &mutex; m_mutex->lock(); } virtual ~ScopedLock(void) { m_mutex->unlock(); } private: M* m_mutex; ScopedLock(void); }; class ThreadSafe { public:...

In various use cases and applications, we need to store a large number of logs and also need to archive those logs. In some cases logs can also be used...

The syslog.cpp sample program is not working for me. I only get the message "Logger [syslog] is not registered yet!". That is the logger I would like to use. I...

Hi! I would like to LOG value but i need output in hex format. How to do it? int value=255;` LOG(INFO)

1.Set level output with a fixed width 2.Allowing user configure fbase in log filename with conf file ### This is a - [ ] Breaking change - [x] New feature...

``` * GLOBAL: ENABLED = true TO_FILE = true TO_STANDARD_OUTPUT = true FORMAT = "[%level|%datetime{%m:%s} %fbase:%line] %msg" FILENAME = "/home/mate/LOG/%datetime{%Y%M%d}/log_%datetime{%Y%M%d_%H}.log" MILLISECONDS_WIDTH = 3 PERFORMANCE_TRACKING = false MAX_LOG_FILE_SIZE = 1048576 LOG_FLUSH_THRESHOLD...

Hi, .cc file should not be installed in include directory. You can provide a shared/static library or install as git submodule? 20fdea6e1b5ae42fb50c9179e332c22242030a38

When I use easylogging++ in my project, I receive the following segment fault, could anyone tell what the problem is? Thank you. ``` 2019-07-11 10:09:59,991 LocalPlannerBase.cpp 507: [INFO]: Angular speed...

Easylogging orders the levels in a way that makes using hierarchical levels less useful than they would be normally. Ignoring the verbose levels, easylogging level hierarchy looks like this: *...

best-practices
accepted