Senty: add threadname to context

This commit is contained in:
Lion Kortlepel
2021-08-11 14:23:36 +02:00
committed by Lion
parent 8fada3ac04
commit 9f52ab2e54
3 changed files with 4 additions and 3 deletions

View File

@@ -73,8 +73,8 @@ std::string DeComp(std::string Compressed) {
std::map<std::thread::id, std::string> threadNameMap;
std::string ThreadName() {
if (Application::Settings.DebugModeEnabled) {
std::string ThreadName(bool DebugModeOverride) {
if (DebugModeOverride || Application::Settings.DebugModeEnabled) {
auto id = std::this_thread::get_id();
if (threadNameMap.find(id) != threadNameMap.end()) {
// found