From dd86cd419036d90f50f7d0c5b784ce94edb26b10 Mon Sep 17 00:00:00 2001 From: DarthArgus Date: Sat, 3 Sep 2016 00:50:01 +0000 Subject: [PATCH] rearrange and make more descriptive this debug message --- .../application/LoginServer/src/shared/TaskGetClusterList.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/engine/server/application/LoginServer/src/shared/TaskGetClusterList.cpp b/engine/server/application/LoginServer/src/shared/TaskGetClusterList.cpp index 76c98469..86d72d26 100755 --- a/engine/server/application/LoginServer/src/shared/TaskGetClusterList.cpp +++ b/engine/server/application/LoginServer/src/shared/TaskGetClusterList.cpp @@ -45,8 +45,6 @@ bool TaskGetClusterList::process(DB::Session *session) qry.address.getValue(temp.m_address); } - DEBUG_WARNING(true, ("Customer facing cluster address is %s", temp.m_address.c_str())); - if (qry.port.isNull()) { temp.m_port = ConfigLoginServer::getCentralServicePort(); @@ -67,6 +65,8 @@ bool TaskGetClusterList::process(DB::Session *session) qry.free_trial_can_create_char.getValue(temp.m_freeTrialCanCreateChar); qry.online_tutorial_limit.getValue(temp.m_onlineTutorialLimit); + DEBUG_WARNING(true, ("Customer facing cluster address for %s is %s", temp.m_clusterName.c_str(), temp.m_address.c_str())); + m_clusterData.push_back(temp); } return (rowsFetched >= 0);