dont log session key

This commit is contained in:
David Markowitz
2026-06-07 02:19:54 -07:00
parent 93d161b10e
commit e5ab06e97f

View File

@@ -768,7 +768,7 @@ void HandleMasterPacket(Packet* packet) {
LUString username;
inStream.Read(username);
LOG("Got new session alert for user %s %i", username.string.c_str(), sessionKey);
LOG("Got new session alert for user %s", username.string.c_str());
//Find them:
User* user = UserManager::Instance()->GetUser(username.string.c_str());
if (!user) {