Iterator parts = getParticipants().iterator();
while (parts.hasNext()) {
Participant next = (Participant) parts.next();
boolean recoveredParticipant = false;
try {
recoveredParticipant = next.recover();
if ( Configuration.isDebugLoggingEnabled() ) Configuration.logDebug ( "coordinator: " + getCoordinatorId()
+ "recovered participant: " + next );
// printMsg("coordinator: " + getCoordinatorId()
// + "recovered participant: " + next, Console.DEBUG);
} catch (Exception e) {