Logging: Don't lock the queue for the duration of the write

This commit is contained in:
James Rowe 2018-07-14 11:57:13 -06:00
parent b30c5370b1
commit 6daebaaa57

View file

@ -83,8 +83,10 @@ private:
}
};
while (true) {
{
std::unique_lock<std::mutex> lock(message_mutex);
message_cv.wait(lock, [&] { return !running || message_queue.Pop(entry); });
}
if (!running) {
break;
}