rearrange and make more descriptive this debug message

This commit is contained in:
DarthArgus
2016-09-26 06:27:53 +00:00
parent 05f8a322fb
commit dd86cd4190
@@ -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);