Return-Path: Delivered-To: apmail-xml-axis-dev-archive@xml.apache.org Received: (qmail 89827 invoked by uid 500); 2 Oct 2001 02:47:28 -0000 Mailing-List: contact axis-dev-help@xml.apache.org; run by ezmlm Precedence: bulk Reply-To: axis-dev@xml.apache.org list-help: list-unsubscribe: list-post: Delivered-To: mailing list axis-dev@xml.apache.org Received: (qmail 89810 invoked from network); 2 Oct 2001 02:47:27 -0000 Message-ID: From: Mark Roder To: "'axis-dev@xml.apache.org'" Subject: Issue: remove calls to BasicConfigurator in Options.java and Axis Engine.java Date: Mon, 1 Oct 2001 21:47:35 -0500 MIME-Version: 1.0 X-Mailer: Internet Mail Service (5.5.2653.19) Content-Type: text/plain; charset="iso-8859-1" X-Spam-Rating: daedalus.apache.org 1.6.2 0/1000/N Options.java and AxisEngine have the following code segment: static { BasicConfigurator.configure(); Category.getRoot().setPriority(Priority.FATAL); } This segment should be removed. It strongarms the log4j setup and applications can not change the behavior. I am trying to use axis in a client application talking to an existing soap service. I am using the log4j.properties file in the classpath to setup log4j in the default/lazy method. I was not getting any of my logging output because axis did the above calls. More information on log4j's default initialization procedure how to setup log4j can be found at http://jakarta.apache.org/log4j/docs/manual.html#defaultInit Later Mark