Skip to content

Commit

Permalink
removed log message about 'copy'
Browse files Browse the repository at this point in the history
  • Loading branch information
belaban committed Aug 20, 2012
1 parent 7dd338e commit 3aa3b05
Showing 1 changed file with 2 additions and 4 deletions.
6 changes: 2 additions & 4 deletions src/org/jgroups/protocols/pbcast/STABLE.java
Expand Up @@ -694,8 +694,7 @@ private void sendStabilityMessage(Digest tmp) {
// our random sleep, we will not send the STABILITY msg. this prevents that all mbrs mcast a
// STABILITY msg at the same time
delay=Util.random(stability_delay);
if(log.isTraceEnabled()) log.trace(local_addr + ": sending stability msg (in " + delay + " ms) " + tmp.printHighestDeliveredSeqnos() +
" (copy=" + tmp.hashCode() + ")");
if(log.isTraceEnabled()) log.trace(local_addr + ": sending stability msg (in " + delay + " ms) " + tmp.printHighestDeliveredSeqnos());
startStabilityTask(tmp, delay);
}

Expand Down Expand Up @@ -841,8 +840,7 @@ public void run() {
msg.setFlag(Message.OOB, Message.Flag.NO_RELIABILITY);
StableHeader hdr=new StableHeader(StableHeader.STABILITY, stability_digest);
msg.putHeader(id, hdr);
if(log.isTraceEnabled()) log.trace(local_addr + ": sending stability msg " + stability_digest.printHighestDeliveredSeqnos() +
" (copy=" + stability_digest.hashCode() + ")");
if(log.isTraceEnabled()) log.trace(local_addr + ": sending stability msg " + stability_digest.printHighestDeliveredSeqnos());
num_stability_msgs_sent++;
down_prot.down(new Event(Event.MSG, msg));
}
Expand Down

0 comments on commit 3aa3b05

Please sign in to comment.