Return-Path: Delivered-To: apmail-tomcat-dev-archive@www.apache.org Received: (qmail 64321 invoked from network); 1 Jul 2009 09:56:27 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.3) by minotaur.apache.org with SMTP; 1 Jul 2009 09:56:27 -0000 Received: (qmail 52619 invoked by uid 500); 1 Jul 2009 09:56:37 -0000 Delivered-To: apmail-tomcat-dev-archive@tomcat.apache.org Received: (qmail 52546 invoked by uid 500); 1 Jul 2009 09:56:36 -0000 Mailing-List: contact dev-help@tomcat.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: "Tomcat Developers List" Delivered-To: mailing list dev@tomcat.apache.org Received: (qmail 52535 invoked by uid 99); 1 Jul 2009 09:56:36 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 01 Jul 2009 09:56:36 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [140.211.11.4] (HELO eris.apache.org) (140.211.11.4) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 01 Jul 2009 09:56:28 +0000 Received: by eris.apache.org (Postfix, from userid 65534) id 258AA2388895; Wed, 1 Jul 2009 09:56:08 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r790095 - /tomcat/sandbox/tomcat-oacc/trunk/src/share/org/apache/catalina/cluster/mcast/McastServiceImpl.java Date: Wed, 01 Jul 2009 09:56:08 -0000 To: dev@tomcat.apache.org From: rjung@apache.org X-Mailer: svnmailer-1.0.8 Message-Id: <20090701095608.258AA2388895@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org Author: rjung Date: Wed Jul 1 09:56:07 2009 New Revision: 790095 URL: http://svn.apache.org/viewvc?rev=790095&view=rev Log: Keep class in sync with TC 5.5. Only logging changes. Modified: tomcat/sandbox/tomcat-oacc/trunk/src/share/org/apache/catalina/cluster/mcast/McastServiceImpl.java Modified: tomcat/sandbox/tomcat-oacc/trunk/src/share/org/apache/catalina/cluster/mcast/McastServiceImpl.java URL: http://svn.apache.org/viewvc/tomcat/sandbox/tomcat-oacc/trunk/src/share/org/apache/catalina/cluster/mcast/McastServiceImpl.java?rev=790095&r1=790094&r2=790095&view=diff ============================================================================== --- tomcat/sandbox/tomcat-oacc/trunk/src/share/org/apache/catalina/cluster/mcast/McastServiceImpl.java (original) +++ tomcat/sandbox/tomcat-oacc/trunk/src/share/org/apache/catalina/cluster/mcast/McastServiceImpl.java Wed Jul 1 09:56:07 2009 @@ -170,8 +170,7 @@ protected void setupSocket() throws IOException { if (mcastBindAddress != null) { try { - if(log.isInfoEnabled()) - log.info("Attempting to bind the multicast socket to "+address+":"+port); + log.info("Attempting to bind the multicast socket to "+address+":"+port); socket = new MulticastSocket(new InetSocketAddress(address,port)); } catch (BindException e) { /* @@ -179,7 +178,7 @@ * to the multicast address. In this case only bind to the * port. */ - log.warn("Binding to multicast address, failed. Binding to port only."); + log.info("Binding to multicast address, failed. Binding to port only."); socket = new MulticastSocket(port); } } else { --------------------------------------------------------------------- To unsubscribe, e-mail: dev-unsubscribe@tomcat.apache.org For additional commands, e-mail: dev-help@tomcat.apache.org