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);