Core/Logging: removed useless log message

This commit is contained in:
joschiwald
2016-08-27 12:30:46 +02:00
parent f0224df131
commit b0c8a9411e
7 changed files with 0 additions and 21 deletions

View File

@@ -3238,8 +3238,6 @@ void Guild::_SendBankContentUpdate(uint8 tabId, SlotIds slots) const
packet.WithdrawalsRemaining = int32(_GetMemberRemainingSlots(itr->second, tabId));
player->GetSession()->SendPacket(packet.Write());
}
TC_LOG_DEBUG("guild", "WORLD: Sent SMSG_GUILD_BANK_QUERY_RESULTS");
}
}
@@ -3320,8 +3318,6 @@ void Guild::SendBankList(WorldSession* session, uint8 tabId, bool fullUpdate) co
}
session->SendPacket(packet.Write());
TC_LOG_DEBUG("guild", "WORLD: Sent SMSG_GUILD_BANK_QUERY_RESULTS");
}
void Guild::SendGuildRanksUpdate(ObjectGuid setterGuid, ObjectGuid targetGuid, uint32 rank)

View File

@@ -922,8 +922,6 @@ void WorldSession::HandlePlayerLoginOpcode(WorldPackets::Character::PlayerLogin&
return;
}
TC_LOG_DEBUG("network", "WORLD: Recvd Player Logon Message");
m_playerLoading = playerLogin.Guid;
TC_LOG_DEBUG("network", "Character %s logging in", playerLogin.Guid.ToString().c_str());
@@ -1023,7 +1021,6 @@ void WorldSession::HandlePlayerLogin(LoginQueryHolder* holder)
WorldPackets::System::MOTD motd;
motd.Text = &sWorld->GetMotd();
SendPacket(motd.Write());
TC_LOG_DEBUG("network", "WORLD: Sent motd (SMSG_MOTD)");
}
SendSetTimeZoneInformation();
@@ -1037,15 +1034,12 @@ void WorldSession::HandlePlayerLogin(LoginQueryHolder* holder)
season.CurrentSeason = sWorld->getIntConfig(CONFIG_ARENA_SEASON_ID);
SendPacket(season.Write());
TC_LOG_DEBUG("network", "WORLD: Sent PVPSeason");
}
// send server info
{
if (sWorld->getIntConfig(CONFIG_ENABLE_SINFO_LOGIN) == 1)
chH.PSendSysMessage(GitRevision::GetFullVersion());
TC_LOG_DEBUG("network", "WORLD: Sent server info");
}
//QueryResult* result = CharacterDatabase.PQuery("SELECT guildid, rank FROM guild_member WHERE guid = '%u'", pCurrChar->GetGUIDLow());

View File

@@ -575,8 +575,6 @@ void WorldSession::HandleListInventoryOpcode(WorldPackets::NPC::Hello& packet)
void WorldSession::SendListInventory(ObjectGuid vendorGuid)
{
TC_LOG_DEBUG("network", "WORLD: Sent SMSG_LIST_INVENTORY");
Creature* vendor = GetPlayer()->GetNPCIfCanInteractWith(vendorGuid, UNIT_NPC_FLAG_VENDOR);
if (!vendor)
{

View File

@@ -317,8 +317,6 @@ void WorldSession::HandleLogoutCancelOpcode(WorldPackets::Character::LogoutCance
//! DISABLE_ROTATE
GetPlayer()->RemoveFlag(UNIT_FIELD_FLAGS, UNIT_FLAG_STUNNED);
}
TC_LOG_DEBUG("network", "WORLD: Sent SMSG_LOGOUT_CANCEL_ACK Message");
}
void WorldSession::HandleTogglePvP(WorldPackets::Misc::TogglePvP& /*packet*/)

View File

@@ -95,8 +95,6 @@ void WorldSession::SendTrainerList(ObjectGuid guid)
void WorldSession::SendTrainerList(ObjectGuid guid, const std::string& strTitle)
{
TC_LOG_DEBUG("network", "WORLD: SendTrainerList");
Creature* unit = GetPlayer()->GetNPCIfCanInteractWith(guid, UNIT_NPC_FLAG_TRAINER);
if (!unit)
{

View File

@@ -237,8 +237,6 @@ void WorldSession::HandleNpcTextQueryOpcode(WorldPackets::Query::QueryNPCText& p
if (!response.Allow)
TC_LOG_ERROR("sql.sql", "HandleNpcTextQueryOpcode: no BroadcastTextID found for text %u in `npc_text table`", packet.TextID);
TC_LOG_DEBUG("network", "WORLD: Sent SMSG_NPC_TEXT_UPDATE");
SendPacket(response.Write());
}

View File

@@ -63,8 +63,6 @@ void WorldSession::SendTaxiStatus(ObjectGuid guid)
data.Status = TAXISTATUS_NOT_ELIGIBLE;
SendPacket(data.Write());
TC_LOG_DEBUG("network", "WORLD: Sent SMSG_TAXI_NODE_STATUS");
}
void WorldSession::HandleTaxiQueryAvailableNodesOpcode(WorldPackets::Taxi::TaxiQueryAvailableNodes& taxiQueryAvailableNodes)
@@ -194,7 +192,6 @@ void WorldSession::SendActivateTaxiReply(ActivateTaxiReply reply)
WorldPackets::Taxi::ActivateTaxiReply data;
data.Reply = reply;
SendPacket(data.Write());
TC_LOG_DEBUG("network", "WORLD: Sent SMSG_ACTIVATETAXIREPLY");
}
void WorldSession::HandleTaxiRequestEarlyLanding(WorldPackets::Taxi::TaxiRequestEarlyLanding& /*taxiRequestEarlyLanding*/)