mirror of
https://github.com/EQEmu/Server.git
synced 2025-12-11 16:51:29 +00:00
Remove Log.Hex remaining entries
This commit is contained in:
parent
55d73f0b07
commit
ee1c55a813
@ -1112,7 +1112,6 @@ uint32 newlength=0;
|
||||
ProcessQueue();
|
||||
} else {
|
||||
Log.Out(Logs::Detail, Logs::Netcode, _L "Incoming packet failed checksum" __L);
|
||||
Log.Hex(Logs::Netcode, buffer, length);
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
@ -164,16 +164,6 @@ void EQEmuLogSys::ProcessConsoleMessage(uint16 log_category, const std::string m
|
||||
SetConsoleTextAttribute(console_handle, Console::Color::White);
|
||||
#endif
|
||||
}
|
||||
|
||||
void EQEmuLogSys::Hex(uint16 log_category, const void *data, unsigned long length, unsigned char padding) {
|
||||
return;
|
||||
char buffer[80];
|
||||
uint32 offset;
|
||||
for (offset = 0; offset < length; offset += 16) {
|
||||
build_hex_line((const char *)data, length, offset, buffer, padding);
|
||||
// log_message(type, "%s", buffer); //%s is to prevent % escapes in the ascii
|
||||
}
|
||||
}
|
||||
/*
|
||||
void EQEmuLogSys::Raw(uint16 log_category, uint16 seq, const BasePacket *p) {
|
||||
return;
|
||||
|
||||
@ -2809,8 +2809,6 @@ namespace RoF
|
||||
}
|
||||
}
|
||||
|
||||
Log.Hex(Logs::Netcode, eq, sizeof(structs::SendAA_Struct) + emu->total_abilities*sizeof(structs::AA_Ability));
|
||||
|
||||
FINISH_ENCODE();
|
||||
}
|
||||
|
||||
@ -4503,8 +4501,6 @@ namespace RoF
|
||||
emu->to_slot = RoFToServerSlot(eq->to_slot);
|
||||
IN(number_in_stack);
|
||||
|
||||
Log.Hex(Logs::Netcode, eq, sizeof(structs::MoveItem_Struct));
|
||||
|
||||
FINISH_DIRECT_DECODE();
|
||||
}
|
||||
|
||||
|
||||
@ -2893,8 +2893,6 @@ namespace RoF2
|
||||
}
|
||||
}
|
||||
|
||||
Log.Hex(Logs::Netcode, eq, sizeof(structs::SendAA_Struct) + emu->total_abilities*sizeof(structs::AA_Ability));
|
||||
|
||||
FINISH_ENCODE();
|
||||
}
|
||||
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user