easylogging++: fix missing logs
This commit is contained in:
parent
a39b1d56c8
commit
807cbcdbf8
|
@ -2984,8 +2984,8 @@ void Writer::initializeLogger(Logger *logger, bool needLock) {
|
|||
}
|
||||
|
||||
void Writer::processDispatch() {
|
||||
static std::atomic_flag in_dispatch;
|
||||
if (in_dispatch.test_and_set())
|
||||
static __thread bool in_dispatch = false;
|
||||
if (in_dispatch)
|
||||
{
|
||||
if (m_proceed && m_logger != NULL)
|
||||
{
|
||||
|
@ -2994,6 +2994,7 @@ void Writer::processDispatch() {
|
|||
}
|
||||
return;
|
||||
}
|
||||
in_dispatch = true;
|
||||
#if ELPP_LOGGING_ENABLED
|
||||
if (ELPP->hasFlag(LoggingFlag::MultiLoggerSupport)) {
|
||||
bool firstDispatched = false;
|
||||
|
@ -3032,7 +3033,7 @@ void Writer::processDispatch() {
|
|||
m_logger->releaseLock();
|
||||
}
|
||||
#endif // ELPP_LOGGING_ENABLED
|
||||
in_dispatch.clear();
|
||||
in_dispatch = false;
|
||||
}
|
||||
|
||||
void Writer::triggerDispatch(void) {
|
||||
|
|
Loading…
Reference in New Issue