Core/WorldSession: commented null opcode tracer

This commit is contained in:
Rat
2012-01-10 15:26:12 +01:00
parent 8d19dc343e
commit de6a45b207

View File

@@ -161,9 +161,9 @@ void WorldSession::SendPacket(WorldPacket const* packet)
if (packet->GetOpcode() == NULL_OPCODE || packet->GetOpcode() == UNKNOWN_OPCODE)
{
sLog->outError("Prevented sending of %s. Trace:", packet->GetOpcode() == NULL_OPCODE ? "NULL_OPCODE" : "UNKNOWN_OPCODE");
ACE_Stack_Trace trace;
sLog->outError("%s", trace.c_str());
sLog->outError("Prevented sending of %s", packet->GetOpcode() == NULL_OPCODE ? "NULL_OPCODE" : "UNKNOWN_OPCODE");
//ACE_Stack_Trace trace;
//sLog->outError("%s", trace.c_str());
return;
}