Remove a redundant mutex lock in logging.

Really can't see any purpose at all... Weird.
This commit is contained in:
Henrik Rydgård 2022-07-19 16:58:57 +02:00
parent d0a319c3bd
commit 26850d80f0
2 changed files with 0 additions and 2 deletions

View file

@ -234,7 +234,6 @@ void LogManager::Log(LogTypes::LOG_LEVELS level, LogTypes::LOG_TYPE type, const
file = fileshort + 1;
}
std::lock_guard<std::mutex> lk(log_lock_);
GetTimeFormatted(message.timestamp);
if (hleCurrentThreadName) {

View file

@ -122,7 +122,6 @@ private:
RingbufferLogListener *ringLog_ = nullptr;
static LogManager *logManager_; // Singleton. Ugh.
std::mutex log_lock_;
std::mutex listeners_lock_;
std::vector<LogListener*> listeners_;