diff options
author | Shauren <shauren.trinity@gmail.com> | 2015-04-21 21:26:15 +0200 |
---|---|---|
committer | Shauren <shauren.trinity@gmail.com> | 2015-04-21 21:26:15 +0200 |
commit | 7e5df6d50447ca667620f78faf01f7f9c3ae0c9f (patch) | |
tree | 6f8c722860bd892cd7eb8c5671f715c6cdba9c09 /src/server/game/Handlers/QueryHandler.cpp | |
parent | fc5d2a05df00ab88a4ac860e11990682c86e2ca6 (diff) |
Core/Logging: Removed a bunch of useless "received X" logs
Diffstat (limited to 'src/server/game/Handlers/QueryHandler.cpp')
-rw-r--r-- | src/server/game/Handlers/QueryHandler.cpp | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/src/server/game/Handlers/QueryHandler.cpp b/src/server/game/Handlers/QueryHandler.cpp index 55a364b811e..e92fdab9409 100644 --- a/src/server/game/Handlers/QueryHandler.cpp +++ b/src/server/game/Handlers/QueryHandler.cpp @@ -152,8 +152,6 @@ void WorldSession::HandleGameObjectQueryOpcode(WorldPackets::Query::QueryGameObj void WorldSession::HandleQueryCorpseLocation(WorldPackets::Query::QueryCorpseLocationFromClient& /*packet*/) { - TC_LOG_DEBUG("network", "WORLD: Received CMSG_QUERY_CORPSE_LOCATION_FROM_CLIENT"); - Corpse* corpse = GetPlayer()->GetCorpse(); if (!corpse) @@ -230,8 +228,6 @@ void WorldSession::HandleNpcTextQueryOpcode(WorldPackets::Query::QueryNPCText& p /// Only _static_ data is sent in this packet !!! void WorldSession::HandleQueryPageText(WorldPackets::Query::QueryPageText& packet) { - TC_LOG_DEBUG("network", "WORLD: Received CMSG_QUERY_PAGE_TEXT"); - uint32 pageID = packet.PageTextID; while (pageID) @@ -269,8 +265,6 @@ void WorldSession::HandleQueryPageText(WorldPackets::Query::QueryPageText& packe void WorldSession::HandleQueryCorpseTransport(WorldPackets::Query::QueryCorpseTransport& packet) { - TC_LOG_DEBUG("network", "WORLD: Recv CMSG_QUERY_CORPSE_TRANSPORT"); - Corpse* corpse = _player->GetCorpse(); WorldPackets::Query::CorpseTransportQuery response; |