From c3abba71d372ac91014ad09205b154d995a3c470 Mon Sep 17 00:00:00 2001 From: click Date: Tue, 28 Dec 2010 10:14:05 +0100 Subject: [PATCH] Core/Handlers: Raise an errorlog into debug for CMSG_DISMISS_CRITTER - this may occur if the player is lagged out. --HG-- branch : trunk --- src/server/game/Server/Protocol/Handlers/PetHandler.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/server/game/Server/Protocol/Handlers/PetHandler.cpp b/src/server/game/Server/Protocol/Handlers/PetHandler.cpp index c3fec1a264f..78724b52fd0 100755 --- a/src/server/game/Server/Protocol/Handlers/PetHandler.cpp +++ b/src/server/game/Server/Protocol/Handlers/PetHandler.cpp @@ -42,7 +42,7 @@ void WorldSession::HandleDismissCritter(WorldPacket &recv_data) if (!pet) { - sLog->outError("Vanitypet (GUID: %u) does not exist - player '%s' (GUID: %u / ACCOUNT: %u) attempted to dismiss it", + sLog->outDebug("Vanitypet (guid: %u) does not exist - player '%s' (guid: %u / account: %u) attempted to dismiss it (possibly lagged out)", uint32(GUID_LOPART(guid)), GetPlayer()->GetName(), GetPlayer()->GetGUIDLow(), GetAccountId()); return; }