OPNFLWPLUG-1032: Neon-MRI: Bump odlparent, yangtools, mdsal
[openflowplugin.git] / test-provider / src / main / java / org / opendaylight / openflowplugin / test / OpenflowpluginTestNodeConnectorNotification.java
index 9eb918fadc3f8d2d712ca41323af3f4458ace8ac..d40e74159354ce1ec8131a0c29778a25eee02465 100644 (file)
@@ -43,33 +43,29 @@ public class OpenflowpluginTestNodeConnectorNotification {
 
         @Override
         public void onNodeConnectorRemoved(NodeConnectorRemoved notification) {
-            LOG.debug("NodeConnectorRemoved Notification ...................");
-            LOG.debug("NodeConnectorRef " + notification.getNodeConnectorRef());
-            LOG.debug("----------------------------------------------------------------------");
+            LOG.debug("NodeConnectorRemoved Notification");
+            LOG.debug("NodeConnectorRef {}", notification.getNodeConnectorRef());
             nodeConnectorRemoved.add(notification);
         }
 
         @Override
         public void onNodeConnectorUpdated(NodeConnectorUpdated notification) {
-            LOG.debug("NodeConnectorUpdated Notification...................");
-            LOG.debug("NodeConnectorRef " + notification.getNodeConnectorRef());
-            LOG.debug("----------------------------------------------------------------------");
+            LOG.debug("NodeConnectorUpdated Notification");
+            LOG.debug("NodeConnectorRef {}", notification.getNodeConnectorRef());
             nodeConnectorUpdated.add(notification);
         }
 
         @Override
         public void onNodeRemoved(NodeRemoved notification) {
-            LOG.debug("NodeRemoved Notification ...................");
-            LOG.debug("NodeRef " + notification.getNodeRef());
-            LOG.debug("----------------------------------------------------------------------");
+            LOG.debug("NodeRemoved Notification");
+            LOG.debug("NodeRef {}", notification.getNodeRef());
             nodeRemoved.add(notification);
         }
 
         @Override
         public void onNodeUpdated(NodeUpdated notification) {
-            LOG.debug("NodeUpdated Notification ...................");
-            LOG.debug("NodeRef " + notification.getNodeRef());
-            LOG.debug("----------------------------------------------------------------------");
+            LOG.debug("NodeUpdated Notification");
+            LOG.debug("NodeRef {}", notification.getNodeRef());
             nodeUpdated.add(notification);
         }
     }