Merge "Add logging for RPC calls."
authorMaros Marsalek <mmarsale@cisco.com>
Sat, 9 Jan 2016 11:33:11 +0000 (11:33 +0000)
committerGerrit Code Review <gerrit@opendaylight.org>
Sat, 9 Jan 2016 11:33:11 +0000 (11:33 +0000)
opendaylight/restconf/sal-rest-connector/src/main/java/org/opendaylight/netconf/sal/restconf/impl/BrokerFacade.java

index 8e1a674c93ebb2864e76aa64bf9130c9635e3a9f..fcf82e5623c142bd41ab261e48ee44eda79e2514 100644 (file)
@@ -169,6 +169,7 @@ public class BrokerFacade {
         if (rpcService == null) {
             throw new RestconfDocumentedException(Status.SERVICE_UNAVAILABLE);
         }
+        LOG.trace("Invoke RPC {} with input: {}", type, input);
         return rpcService.invokeRpc(type, input);
     }