| 45 | } |
| 46 | |
| 47 | bool LogSet::hasBackupWorker(UID id) const { |
| 48 | for (const auto& worker : backupWorkers) { |
| 49 | if (worker->get().id() == id) { |
| 50 | return true; |
| 51 | } |
| 52 | } |
| 53 | return false; |
| 54 | } |
| 55 | |
| 56 | std::string LogSet::logServerString() { |
| 57 | std::string result; |
no test coverage detected