Remove another Log.Hex straggler

This commit is contained in:
Akkadius 2015-01-19 02:33:52 -06:00
parent bf62d1fd26
commit 87e212046f

View File

@ -102,7 +102,6 @@ EQRawApplicationPacket *EQStream::MakeApplicationPacket(const unsigned char *buf
{ {
EQRawApplicationPacket *ap=nullptr; EQRawApplicationPacket *ap=nullptr;
Log.Out(Logs::Detail, Logs::Netcode, _L "Creating new application packet, length %d" __L, len); Log.Out(Logs::Detail, Logs::Netcode, _L "Creating new application packet, length %d" __L, len);
Log.Hex(Logs::Netcode, buf, len);
ap = new EQRawApplicationPacket(buf, len); ap = new EQRawApplicationPacket(buf, len);
return ap; return ap;
} }