This commit is contained in:
Akkadius 2024-10-08 06:01:51 -05:00
parent a9ad681a35
commit d9e6665bd3
2 changed files with 2 additions and 2 deletions

View File

@ -177,7 +177,7 @@ void WorldContentService::ReloadContentFlags()
set_content_flags.push_back(f);
LogInfo(
"Loaded content flag [{}] [{}]",
"Loaded content flag [flag|{}] [status|{}]",
f.flag_name,
(f.enabled ? "enabled" : "disabled")
);

View File

@ -255,7 +255,7 @@ void EQEmuLogSys::ProcessConsoleMessage(
<< " | ";
}
std::unordered_map<std::string, std::string> key_value_map = {};
std::map<std::string, std::string> key_value_map = {};
std::string msg = message;
if (Strings::Contains(msg, "[") && Strings::Contains(msg, "]") && Strings::Contains(msg, "|")) {
for (auto &e: Strings::Split(msg, "[")) {