Fixed process name change regression

This commit is contained in:
Nav
2024-12-20 13:21:22 +00:00
parent 37bc1b9ac9
commit db05a97215

View File

@@ -84,7 +84,7 @@ const std::string& Logger::threadName() {
* We override the main thread name when printing logs, to keep the format of the thread name in the * We override the main thread name when printing logs, to keep the format of the thread name in the
* logs consistent. * logs consistent.
*/ */
nameIt = nameCache.emplace(threadId, name == "Bloom" ? "MT" : name).first; nameIt = nameCache.emplace(threadId, name == "bloom" ? "MT" : name).first;
} }
return nameIt->second; return nameIt->second;