mirror of
https://git.wownero.com/wownero/wownero.git
synced 2024-08-15 01:03:23 +00:00
easylogging++: fix missing logs
This commit is contained in:
parent
a39b1d56c8
commit
807cbcdbf8
1 changed files with 4 additions and 3 deletions
7
external/easylogging++/easylogging++.cc
vendored
7
external/easylogging++/easylogging++.cc
vendored
|
@ -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 a new issue