Le 03/02/16 10:19, Abhijit Bhatode a écrit :
> Thank you for the response.
>
> In my case, client is closing connections if server takes longer to
> respond. So, looking at the message that took time in processing would be
> useful.

Two easy options :
- add the Log filter in your chain. You'll get information about what is
being processed, and i'ts not too expensive
- if the message has not been sent to the remote peer, it's still in the
writeQueue of your session, so you can always look at it. Just call
session.getCurrentWriteRequest(), it will return the message that is the
one blocked.

Reply via email to