Return-Path: Delivered-To: apmail-tomcat-dev-archive@www.apache.org Received: (qmail 56709 invoked from network); 11 Apr 2007 19:14:14 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.2) by minotaur.apache.org with SMTP; 11 Apr 2007 19:14:14 -0000 Received: (qmail 18980 invoked by uid 500); 11 Apr 2007 19:14:16 -0000 Delivered-To: apmail-tomcat-dev-archive@tomcat.apache.org Received: (qmail 18666 invoked by uid 500); 11 Apr 2007 19:14:15 -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 18655 invoked by uid 500); 11 Apr 2007 19:14:15 -0000 Delivered-To: apmail-jakarta-tomcat-dev@jakarta.apache.org Received: (qmail 18652 invoked by uid 99); 11 Apr 2007 19:14:15 -0000 Received: from herse.apache.org (HELO herse.apache.org) (140.211.11.133) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 11 Apr 2007 12:14:15 -0700 X-ASF-Spam-Status: No, hits=-99.5 required=10.0 tests=ALL_TRUSTED,NO_REAL_NAME X-Spam-Check-By: apache.org Received: from [140.211.11.4] (HELO brutus.apache.org) (140.211.11.4) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 11 Apr 2007 12:14:08 -0700 Received: by brutus.apache.org (Postfix, from userid 33) id CBB1A714077; Wed, 11 Apr 2007 12:13:48 -0700 (PDT) From: bugzilla@apache.org To: tomcat-dev@jakarta.apache.org Subject: DO NOT REPLY [Bug 42085] - java.util.Logging duplicated since 5.5.23. 5.5.20 is OK In-Reply-To: X-Bugzilla-Reason: AssignedTo Message-Id: <20070411191348.CBB1A714077@brutus.apache.org> Date: Wed, 11 Apr 2007 12:13:48 -0700 (PDT) X-Virus-Checked: Checked by ClamAV on apache.org DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG� RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT . ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND� INSERTED IN THE BUG DATABASE. http://issues.apache.org/bugzilla/show_bug.cgi?id=42085 asf-bugzilla@richardfearn.co.uk changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |NEEDINFO ------- Additional Comments From asf-bugzilla@richardfearn.co.uk 2007-04-11 12:13 ------- java.util.logging.FileHandler extends java.util.logging.StreamHandler. The no-args constructors for these two classes both make a call to the configure() method, which is why you see two TivoliFormatters created when the tivoli handler is set up. This shouldn't cause duplication, though; the first formatter to be created is simply discarded, and only the second is used. Could you give more information about your setup? I can't duplicate this problem. Is that your entire logging.properties file? How does your code use the logger? If I put these lines into a test servlet: Logger logger = Logger.getLogger(""); logger.severe("Handlers: " + Arrays.asList(logger.getHandlers())); and make a request to it (using your logging.properties file), the console shows that the root logger has two handlers (both FileHandlers). -- Configure bugmail: http://issues.apache.org/bugzilla/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the assignee for the bug, or are watching the assignee. --------------------------------------------------------------------- To unsubscribe, e-mail: dev-unsubscribe@tomcat.apache.org For additional commands, e-mail: dev-help@tomcat.apache.org