| 54 | } |
| 55 | |
| 56 | std::string LogSet::logServerString() { |
| 57 | std::string result; |
| 58 | for (int i = 0; i < logServers.size(); i++) { |
| 59 | if (i > 0) { |
| 60 | result += ", "; |
| 61 | } |
| 62 | result += logServers[i]->get().id().toString(); |
| 63 | } |
| 64 | return result; |
| 65 | } |
| 66 | |
| 67 | void LogSet::populateSatelliteTagLocations(int logRouterTags, int oldLogRouterTags, int txsTags, int oldTxsTags) { |
| 68 | satelliteTagLocations.clear(); |