Remove Log.Hex completely for real

This commit is contained in:
Akkadius
2015-01-19 02:35:28 -06:00
parent 87e212046f
commit 2ecb91d075
4 changed files with 0 additions and 4 deletions
-1
View File
@@ -68,7 +68,6 @@ bool LauncherLink::Process() {
ServerPacket *pack = 0;
while((pack = tcpc->PopPacket())) {
Log.Hex(Logs::Netcode, pack->pBuffer, pack->size);
if (!authenticated) {
if (WorldConfig::get()->SharedKey.length() > 0) {
if (pack->opcode == ServerOP_ZAAuth && pack->size == 16) {
-1
View File
@@ -97,7 +97,6 @@ bool LoginServer::Process() {
while((pack = tcpc->PopPacket()))
{
Log.Out(Logs::Detail, Logs::World_Server,"Recevied ServerPacket from LS OpCode 0x04x",pack->opcode);
Log.Hex(Logs::Netcode, pack->pBuffer, pack->size);
switch(pack->opcode) {
case 0:
-1
View File
@@ -177,7 +177,6 @@ bool ZoneServer::Process() {
}
ServerPacket *pack = 0;
while((pack = tcpc->PopPacket())) {
Log.Hex(Logs::Netcode, pack->pBuffer, pack->size);
if (!authenticated) {
if (WorldConfig::get()->SharedKey.length() > 0) {
if (pack->opcode == ServerOP_ZAAuth && pack->size == 16) {