From: adetalhouet Date: Wed, 6 Jan 2016 19:39:29 +0000 (-0500) Subject: Add logging for RPC calls. X-Git-Tag: release/lithium-sr4~13 X-Git-Url: https://git.opendaylight.org/gerrit/gitweb?a=commitdiff_plain;h=87902160ac917dca3fe8e91fd1511eb47cadfb85;p=controller.git Add logging for RPC calls. Change-Id: I173a41401ce5f12a8f38844f4653882be66467da Signed-off-by: adetalhouet --- diff --git a/opendaylight/md-sal/sal-rest-connector/src/main/java/org/opendaylight/controller/sal/restconf/impl/BrokerFacade.java b/opendaylight/md-sal/sal-rest-connector/src/main/java/org/opendaylight/controller/sal/restconf/impl/BrokerFacade.java index b07d70fb56..c99f020e70 100644 --- a/opendaylight/md-sal/sal-rest-connector/src/main/java/org/opendaylight/controller/sal/restconf/impl/BrokerFacade.java +++ b/opendaylight/md-sal/sal-rest-connector/src/main/java/org/opendaylight/controller/sal/restconf/impl/BrokerFacade.java @@ -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); }