mirror of
https://github.com/EQEmu/Server.git
synced 2026-05-17 03:08:26 +00:00
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:
+2
-2
@@ -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;
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user