OPNFLWPLUG-1032: Neon-MRI: Bump odlparent, yangtools, mdsal
[openflowplugin.git] / test-provider / src / main / java / org / opendaylight / openflowplugin / test / OpenflowpluginTestServiceProvider.java
index 10ee6a4d0dd0ceafdc4286e98c2feec3d2b28240..3aa5ecf58f5c79969f77c45ff8f2295343de194f 100644 (file)
@@ -107,8 +107,7 @@ public class OpenflowpluginTestServiceProvider implements AutoCloseable,
      */
     @Override
     public ListenableFuture<RpcResult<AddFlowOutput>> addFlow(AddFlowInput input) {
-        String plus = "addFlow - " + input;
-        OpenflowpluginTestServiceProvider.LOG.info(plus);
+        OpenflowpluginTestServiceProvider.LOG.info("addFlow - {}", input);
         return null;
     }
 
@@ -123,8 +122,7 @@ public class OpenflowpluginTestServiceProvider implements AutoCloseable,
      */
     @Override
     public ListenableFuture<RpcResult<RemoveFlowOutput>> removeFlow(RemoveFlowInput input) {
-        String plus = "removeFlow - " + input;
-        OpenflowpluginTestServiceProvider.LOG.info(plus);
+        OpenflowpluginTestServiceProvider.LOG.info("removeFlow - {}", input);
         return null;
     }
 
@@ -139,8 +137,7 @@ public class OpenflowpluginTestServiceProvider implements AutoCloseable,
      */
     @Override
     public ListenableFuture<RpcResult<UpdateFlowOutput>> updateFlow(UpdateFlowInput input) {
-        String plus = "updateFlow - " + input;
-        OpenflowpluginTestServiceProvider.LOG.info(plus);
+        OpenflowpluginTestServiceProvider.LOG.info("updateFlow - {}", input);
         return null;
     }