Decouple config and netconf subsystems.
[controller.git] / opendaylight / netconf / sal-netconf-connector / src / main / java / org / opendaylight / controller / sal / connect / netconf / util / NetconfRpcFutureCallback.java
@@ -31,18 +31,18 @@ public class NetconfRpcFutureCallback implements FutureCallback<DOMRpcResult> {
     @Override
     public void onSuccess(final DOMRpcResult result) {
         if(result.getErrors().isEmpty()) {
-            LOG.trace("{}: " + type + " invoked successfully", id);
+            LOG.trace("{}: {} invoked successfully", id, type);
         } else {
             onUnsuccess(result);
         }
     }
 
     protected void onUnsuccess(final DOMRpcResult result) {
-        LOG.warn("{}: " + type + " invoked unsuccessfully: {}", id, result.getErrors());
+        LOG.warn("{}: {} invoked unsuccessfully: {}", id, type, result.getErrors());
     }
 
     @Override
     public void onFailure(final Throwable t) {
-        LOG.warn("{}: " + type + " failed.", id, t);
+        LOG.warn("{}: {} failed.", id, type, t);
     }
 }