| 3978 | } |
| 3979 | |
| 3980 | void DDTeamCollection::traceServerTeamInfo() const { |
| 3981 | int i = 0; |
| 3982 | |
| 3983 | TraceEvent("ServerTeamInfo", distributorId).detail("Size", teams.size()); |
| 3984 | for (auto& team : teams) { |
| 3985 | TraceEvent("ServerTeamInfo", distributorId) |
| 3986 | .detail("TeamIndex", i++) |
| 3987 | .detail("Healthy", team->isHealthy()) |
| 3988 | .detail("TeamSize", team->size()) |
| 3989 | .detail("MemberIDs", team->getServerIDsStr()) |
| 3990 | .detail("TeamID", team->getTeamID()); |
| 3991 | } |
| 3992 | } |
| 3993 | |
| 3994 | void DDTeamCollection::traceMachineInfo() const { |
| 3995 | int i = 0; |
nothing calls this directly
no test coverage detected