Author: kfujino Date: Tue Aug 22 09:55:18 2017 New Revision: 1805748 URL: http://svn.apache.org/viewvc?rev=1805748&view=rev Log: Add member info to the log message when the failure detection check fails in TcpFailureDetector.
Modified: tomcat/tc7.0.x/trunk/java/org/apache/catalina/tribes/group/interceptors/TcpFailureDetector.java tomcat/tc7.0.x/trunk/webapps/docs/changelog.xml Modified: tomcat/tc7.0.x/trunk/java/org/apache/catalina/tribes/group/interceptors/TcpFailureDetector.java URL: http://svn.apache.org/viewvc/tomcat/tc7.0.x/trunk/java/org/apache/catalina/tribes/group/interceptors/TcpFailureDetector.java?rev=1805748&r1=1805747&r2=1805748&view=diff ============================================================================== --- tomcat/tc7.0.x/trunk/java/org/apache/catalina/tribes/group/interceptors/TcpFailureDetector.java (original) +++ tomcat/tc7.0.x/trunk/java/org/apache/catalina/tribes/group/interceptors/TcpFailureDetector.java Tue Aug 22 09:55:18 2017 @@ -359,7 +359,7 @@ public class TcpFailureDetector extends } catch ( ConnectException cx) { //do nothing, we couldn't connect }catch (Exception x ) { - log.error("Unable to perform failure detection check, assuming member down.",x); + log.error("Unable to perform failure detection check, assuming member down.[" + mbr + "]",x); } finally { try {socket.close(); } catch ( Exception ignore ){} } Modified: tomcat/tc7.0.x/trunk/webapps/docs/changelog.xml URL: http://svn.apache.org/viewvc/tomcat/tc7.0.x/trunk/webapps/docs/changelog.xml?rev=1805748&r1=1805747&r2=1805748&view=diff ============================================================================== --- tomcat/tc7.0.x/trunk/webapps/docs/changelog.xml (original) +++ tomcat/tc7.0.x/trunk/webapps/docs/changelog.xml Tue Aug 22 09:55:18 2017 @@ -80,6 +80,10 @@ update the access time when receiving the map member notification message. (kfujino) </fix> + <fix> + Add member info to the log message when the failure detection check + fails in <code>TcpFailureDetector</code>. (kfujino) + </fix> </changelog> </subsection> </section> --------------------------------------------------------------------- To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org For additional commands, e-mail: dev-h...@tomcat.apache.org