More logging adjustments

This commit is contained in:
Akkadius
2019-07-05 04:21:22 -05:00
parent ffd652a643
commit f0937c3963
6 changed files with 74 additions and 106 deletions
+2 -5
View File
@@ -265,17 +265,14 @@ void ServerManager::SendUserToWorldRequest(
found = true;
if (server.options.IsDumpInPacketsOn()) {
LogF(Logs::General, Logs::Login_Server, "{0}", outapp.ToString());
LogLoginserver("{0}", outapp.ToString());
}
}
++iter;
}
if (!found && server.options.IsTraceOn()) {
Log(Logs::General,
Logs::Error,
"Client requested a user to world but supplied an invalid id of %u.",
server_id);
Error("Client requested a user to world but supplied an invalid id of {0}", server_id);
}
}