Fix log calls that either didn't carry over or were using newer aliases that weren't converted to FMT prior to migration

This commit is contained in:
Akkadius
2019-09-17 00:18:07 -05:00
parent 9a7ecb4e8d
commit 96ef76847b
16 changed files with 36 additions and 37 deletions
+2 -2
View File
@@ -643,7 +643,7 @@ void Clientlist::Process()
MailBox, Key);
if (!database.VerifyMailKey(CharacterName, (*it)->ClientStream->GetRemoteIP(), Key)) {
LogError("Chat Key for %s does not match, closing connection.", MailBox);
LogError("Chat Key for [{}] does not match, closing connection.", MailBox);
KeyValid = false;
break;
}
@@ -668,7 +668,7 @@ void Clientlist::Process()
}
default: {
LogInfo("Unhandled chat opcode %8X", opcode);
LogInfo("Unhandled chat opcode {:#04x}", opcode);
break;
}
}