aboutsummaryrefslogtreecommitdiff
path: root/src/server/game/Handlers/MailHandler.cpp
diff options
context:
space:
mode:
authorGiacomo Pozzoni <giacomopoz@gmail.com>2020-04-05 14:28:24 +0200
committerShauren <shauren.trinity@gmail.com>2022-01-01 00:51:54 +0100
commita9e325f6b7be8e884402ad87a5f97ec265dc4e82 (patch)
treefa8f1e1844ceaadf504cdfb6423bf377be43ae77 /src/server/game/Handlers/MailHandler.cpp
parent363db46c43c3662001b9a120bb7b1f0839276529 (diff)
Core/Logs: Log full guid instead of just low guid, part 2
(cherry picked from commit 3def52c1c459f566ab2b2d8cf017c70df4d7cf22)
Diffstat (limited to 'src/server/game/Handlers/MailHandler.cpp')
-rw-r--r--src/server/game/Handlers/MailHandler.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/server/game/Handlers/MailHandler.cpp b/src/server/game/Handlers/MailHandler.cpp
index 91cd6c78de9..f2c9a767dba 100644
--- a/src/server/game/Handlers/MailHandler.cpp
+++ b/src/server/game/Handlers/MailHandler.cpp
@@ -94,7 +94,7 @@ void WorldSession::HandleSendMail(WorldPackets::Mail::SendMail& packet)
if (!receiverGuid)
{
- TC_LOG_INFO("network", "Player %s is sending mail to %s (GUID: not existing!) with subject %s "
+ TC_LOG_INFO("network", "Player %s is sending mail to %s (GUID: non-existing!) with subject %s "
"and body %s includes " SZFMTD " items, " SI64FMTD " copper and " SI64FMTD " COD copper with StationeryID = %d",
GetPlayerInfo().c_str(), packet.Info.Target.c_str(), packet.Info.Subject.c_str(), packet.Info.Body.c_str(),
packet.Info.Attachments.size(), packet.Info.SendMoney, packet.Info.Cod, packet.Info.StationeryID);