SimpleClient secure mode fixed
[openflowjava.git] / openflow-protocol-it / src / test / java / org / opendaylight / openflowjava / protocol / impl / integration / MockPlugin.java
index e98b48eddc787970e8acf6927b9a256c734565eb..8c5f093f638880cc6c2b20dadead9a9b8a70dca8 100644 (file)
@@ -184,7 +184,14 @@ public class MockPlugin implements OpenflowProtocolListener, SwitchConnectionHan
     @Override\r
     public void onPacketInMessage(PacketInMessage notification) {\r
         LOGGER.debug("PacketIn message received");\r
-        \r
+        LOGGER.debug("BufferId: " + notification.getBufferId());\r
+        LOGGER.debug("TotalLength: " + notification.getTotalLen());\r
+        LOGGER.debug("Reason: " + notification.getReason());\r
+        LOGGER.debug("TableId: " + notification.getTableId());\r
+        LOGGER.debug("Cookie: " + notification.getCookie());\r
+        LOGGER.debug("Class: " + notification.getMatch().getMatchEntries().get(0).getOxmClass());\r
+        LOGGER.debug("Field: " + notification.getMatch().getMatchEntries().get(0).getOxmMatchField());\r
+        LOGGER.debug("Datasize: " + notification.getData().length);\r
     }\r
 \r
     @Override\r