Add debug to pinpoint lastApplied movement
[controller.git] / opendaylight / md-sal / sal-akka-raft / src / main / java / org / opendaylight / controller / cluster / raft / RaftActorContextImpl.java
index 4fd5666ae207a77143f5fc3808c04d8e4417db34..4644a2d79807bf36d069fa010ce561e0232cbcf9 100644 (file)
@@ -188,6 +188,7 @@ public class RaftActorContextImpl implements RaftActorContext {
 
     @Override
     public void setLastApplied(long lastApplied) {
+        log.debug("{}: Moving last applied index from {} to {}", id, this.lastApplied, lastApplied);
         this.lastApplied = lastApplied;
     }