Add logging for RPC calls. 01/32201/6
authoradetalhouet <adetalhouet@inocybe.com>
Wed, 6 Jan 2016 19:39:29 +0000 (14:39 -0500)
committerGerrit Code Review <gerrit@opendaylight.org>
Mon, 25 Jan 2016 16:49:05 +0000 (16:49 +0000)
Change-Id: I173a41401ce5f12a8f38844f4653882be66467da
Signed-off-by: adetalhouet <adetalhouet@inocybe.com>
opendaylight/md-sal/sal-rest-connector/src/main/java/org/opendaylight/controller/sal/restconf/impl/BrokerFacade.java

index b07d70fb56301aca2d2cd201f4458bcaa6b5a49c..c99f020e70176e40bae5b21046667dda004f76e4 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);
     }