BUG-5280: switch transactionIdentifier
[controller.git] / opendaylight / md-sal / sal-distributed-datastore / src / main / java / org / opendaylight / controller / cluster / datastore / TerminationMonitor.java
index 6dd0ab123006a7180722ed456e3202319cf19a15..3820cc4eb8ccd64ac62003fafd7fae9038af503d 100644 (file)
@@ -10,23 +10,23 @@ package org.opendaylight.controller.cluster.datastore;
 
 import akka.actor.Terminated;
 import akka.actor.UntypedActor;
-import org.opendaylight.controller.cluster.datastore.messages.Monitor;
+import org.opendaylight.controller.cluster.common.actor.Monitor;
 import org.slf4j.Logger;
 import org.slf4j.LoggerFactory;
 
 public class TerminationMonitor extends UntypedActor{
     private static final Logger LOG = LoggerFactory.getLogger(TerminationMonitor.class);
+    public static final String ADDRESS = "termination-monitor";
 
     public TerminationMonitor(){
         LOG.debug("Created TerminationMonitor");
     }
 
-    @Override public void onReceive(Object message) throws Exception {
+    @Override
+    public void onReceive(Object message) throws Exception {
         if(message instanceof Terminated){
             Terminated terminated = (Terminated) message;
-            if(LOG.isDebugEnabled()) {
-                LOG.debug("Actor terminated : {}", terminated.actor());
-            }
+            LOG.debug("Actor terminated : {}", terminated.actor());
         } else if(message instanceof Monitor){
             Monitor monitor = (Monitor) message;
             getContext().watch(monitor.getActorRef());