From 39dd376c40716f513ae98eb16126266d89378f87 Mon Sep 17 00:00:00 2001 From: Shauren Date: Wed, 20 Jan 2016 17:19:42 +0100 Subject: Core/Logging: Include more info in bad realm log (cherry picked from commit a6dd6d7841d6ab3e496d492d225c5541721c8dfd) --- src/server/game/Server/WorldSocket.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'src/server') diff --git a/src/server/game/Server/WorldSocket.cpp b/src/server/game/Server/WorldSocket.cpp index 9447204e2b9..e3c6179a34a 100644 --- a/src/server/game/Server/WorldSocket.cpp +++ b/src/server/game/Server/WorldSocket.cpp @@ -460,7 +460,8 @@ void WorldSocket::HandleAuthSessionCallback(std::shared_ptr authSes if (authSession->RealmID != realm.Id.Realm) { SendAuthResponseError(REALM_LIST_REALM_NOT_FOUND); - TC_LOG_ERROR("network", "WorldSocket::HandleAuthSession: Sent Auth Response (bad realm)."); + TC_LOG_ERROR("network", "WorldSocket::HandleAuthSession: Client %s requested connecting with realm id %u but this realm has id %u set in config.", + GetRemoteIpAddress().to_string().c_str(), authSession->RealmID, realm.Id.Realm); DelayedCloseSocket(); return; } -- cgit v1.2.3