I have a test client to make a sync JMS call. I use spring integration's outbound gateway as:

Code:
<jms:outbound-gateway id="jmsOutGateway"
                   request-destination="outQueue"
                   request-channel="outboundJmsRequests"
                   reply-channel="jmsReplies"/>
I am looking for a way to log how much time this operation takes. How can I do this?