diff options
author | megamage <none@none> | 2009-03-25 16:07:19 -0600 |
---|---|---|
committer | megamage <none@none> | 2009-03-25 16:07:19 -0600 |
commit | 2106e9f25773fe5c9e376057e6c4703210c0b2fb (patch) | |
tree | 67d2b0b74ffc9141c1e1439a3fb06fd8cffd95fa /src/game/CharacterHandler.cpp | |
parent | 02440eaa106834edbf36cedad13a3badc6a09abe (diff) |
[7539] Fixed log output Author: AlexDereka
--HG--
branch : trunk
Diffstat (limited to 'src/game/CharacterHandler.cpp')
-rw-r--r-- | src/game/CharacterHandler.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/game/CharacterHandler.cpp b/src/game/CharacterHandler.cpp index 39ce8a13f87..dace248bdbe 100644 --- a/src/game/CharacterHandler.cpp +++ b/src/game/CharacterHandler.cpp @@ -522,7 +522,7 @@ void WorldSession::HandleCharDeleteOpcode( WorldPacket & recv_data ) return; std::string IP_str = GetRemoteAddress(); - sLog.outDetail("Account: %d (IP: %s) Delete Character:[%s] (guid:%u)",GetAccountId(),IP_str.c_str(),name.c_str(),GUID_LOPART(guid)); + sLog.outDetail("Account: %d (IP: %s) Delete Character:[%s] (guid: %u)",GetAccountId(),IP_str.c_str(),name.c_str(),GUID_LOPART(guid)); sLog.outChar("Account: %d (IP: %s) Delete Character:[%s] (guid: %u)",GetAccountId(),IP_str.c_str(),name.c_str(),GUID_LOPART(guid)); if(sLog.IsOutCharDump()) // optimize GetPlayerDump call |