I setup a TRACE on the server and I have attached a snip it of the server log from the server is started and to the client connect. There is also client log where you can see it detect a "FAILURE_DETECTED" and the same time the server log print "[org.jboss.remoting.transport.bisocket.BisocketServerInvoker] (Timer-3) checking connections"
So at this time there is no indication on the server about the "FAILURE_DETECTED"
Does any know how to enable logging for remoting and jms on the client, tried to add follow to my log4j configuration with not luck
<category name="org.jboss.remoteing">
<priority value="TRACE" class="org.jboss.logging.XLevel" />
<appender-ref ref="FILE" />
</category>
<category name="org.jboss.messaging">
<priority value="TRACE" class="org.jboss.logging.XLevel"></priority>
<appender-ref ref="FILE" />
</category>
<category name="org.jboss.jms">
<priority value="TRACE" class="org.jboss.logging.XLevel"></priority>
<appender-ref ref="FILE" />
</category>
btw: The time stamp in the 2 log files synchronized because the server and client is running on the same machine for this test
Thanks