Add logging for RPC calls. 02/32202/4
authoradetalhouet <adetalhouet@inocybe.com>
Wed, 6 Jan 2016 19:43:22 +0000 (14:43 -0500)
committerMaros Marsalek <mmarsale@cisco.com>
Sat, 9 Jan 2016 10:17:25 +0000 (10:17 +0000)
Change-Id: I97503fc2e098e3c048e10041d8f3de4b65a1e4f6
Signed-off-by: adetalhouet <adetalhouet@inocybe.com>
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);
     }