Return-Path: Mailing-List: contact commons-user-help@jakarta.apache.org; run by ezmlm Delivered-To: mailing list commons-user@jakarta.apache.org Received: (qmail 3659 invoked by uid 98); 11 Dec 2002 21:22:13 -0000 X-Antivirus: nagoya (v4218 created Aug 14 2002) Received: (qmail 3640 invoked from network); 11 Dec 2002 21:22:11 -0000 Received: from daedalus.apache.org (HELO apache.org) (63.251.56.142) by nagoya.betaversion.org with SMTP; 11 Dec 2002 21:22:11 -0000 Received: (qmail 93304 invoked by uid 500); 11 Dec 2002 21:20:57 -0000 Received: (qmail 93297 invoked from network); 11 Dec 2002 21:20:57 -0000 Received: from mailout10.sul.t-online.com (194.25.134.21) by daedalus.apache.org with SMTP; 11 Dec 2002 21:20:57 -0000 Received: from fwd02.sul.t-online.de by mailout10.sul.t-online.com with smtp id 18MEHu-0004B9-06; Wed, 11 Dec 2002 22:21:02 +0100 Received: from [212.9.176.229] (310091222786-0001@[80.131.79.42]) by fmrl02.sul.t-online.com with esmtp id 18MEHk-0Ci6ASC; Wed, 11 Dec 2002 22:20:52 +0100 Subject: RE: Totaly frustrated with commons-logging From: Zsolt Koppany To: Jakarta Commons Users List In-Reply-To: <62A8F60F13733A44A3A757425A0C10A9B5A9@mailhost3.pslgroup.com> References: <62A8F60F13733A44A3A757425A0C10A9B5A9@mailhost3.pslgroup.com> Content-Type: text/plain Organization: Message-Id: <1039641644.3515.7.camel@xlap.intland.com> Mime-Version: 1.0 X-Mailer: Ximian Evolution 1.2.0 Date: 11 Dec 2002 22:20:45 +0100 Content-Transfer-Encoding: 7bit X-Sender: 310091222786-0001@t-dialin.net X-Spam-Rating: daedalus.apache.org 1.6.2 0/1000/N After setting log4j.debug=true in the command line I see a strange error message that "log4j: Could not find resource: [log4j.properties]." Before you think that the file does not exists I show what ls tells me: ls -l WEB-INF/classes/log4j.properties -rw-r--r-- 1 zk 1240 Dec 11 22:16 WEB-INF/classes/log4j.properties How is that possible? I use jdk-1.4.1 with tomcat-4.1.12-LE-jdk14 Messages: log4j: Trying to find [log4j.properties] using sun.misc.Launcher$AppClassLoader@4b222f class loader. log4j: Trying to find [log4j.properties] using ClassLoader.getSystemResource(). log4j: Could not find resource: [log4j.properties]. On Wed, 2002-12-11 at 15:19, Jonathan Mangano wrote: > I have been using commons-logging, log4j, Tomcat and Struts for a while now. When configured it only gives the log messages I want and does not fill my screen or log files with too much information. Without more information, my guess is that the problem lies with your setup of log4j, not commons-logging. > > Maybe a description of my own setup might help. I have two configuration files in my class directory: > > 1. commons-logging.properties > Which contains a single line: > org.apache.commons.logging.Log=org.apache.commons.logging.impl.Log4JCategoryLog > > 2. log4j.properties > Which contains the follwing: > # log4j configuration file > > log4j.debug=true > > # Create two appenders, one called stdout and the other called rolling > log4j.logger.com.mypackage=INFO, stdout, rolling > log4j.logger.org.apache=WARN, stdout, rolling > > # Configure the stout appender to go to the Console > log4j.appender.stdout=org.apache.log4j.ConsoleAppender > > # Configure the stdout appender to use the PatternLayout > log4j.appender.stdout.layout=org.apache.log4j.PatternLayout > > # Pattern to output the caller's file name and line number. > log4j.appender.stdout.layout.ConversionPattern=%5p [%t] (%F:%L) - %m%n > > # Configure the rolling appender to be a RollingFileAppender > log4j.appender.rolling=org.apache.log4j.DailyRollingFileAppender > > # Configure the name of the file for the rolling appender > log4j.appender.rolling.File=console.log > > #Configure the layout pattern and conversion pattern for the rolling appender > log4j.appender.rolling.layout=org.apache.log4j.PatternLayout > log4j.appender.rolling.layout.ConversionPattern=%d{ABSOLUTE} - %p %c [%t] - %m%n > > I use the standard call to get a logger in my code: > Log logger = LogFactory.getLog(MyClass.class.getName()); > logger.warn("This is a warning"); > > If you are using Struts, you might also want to check that you have the correct jar files. See http://jakarta.apache.org/builds/jakarta-struts/release/v1.1-b2/ and follow the instructions for log4j users. > > -----Original Message----- > From: Zsolt Koppany [mailto:z.koppany@intland.com] > Sent: December 11, 2002 5:20 AM > To: Jakarta Commons Users List > Subject: Totaly frustrated with commons-logging > > > Hi, > > I'm totally frustrated with commons-logging. My applications uses log4j > and now tomcat switches log4j on because of commons-logging. Because I > do have to debug, I get a lot of absolutely unusable logs. The first log > of my application comes after 18000 lines of logging information. > Somebody might find that very cool I just find it terrible. I have read > the manual of commons-logging. I read about enterprise logging (find it > cool) but could not figure out how for example I could use the jdk-1.4 > logging. > I really hate that commons-logging changes log4j that I get this huge > amount of unusable debug information. > How can I disable that? > > Unfortunately it is not more possible to configure log4j that I just > want to see the logs of package xy. I mean a log4j configuration option: > > log4j.rootCategory=DEBUG, A1, A2 > log4j.logger.org.apache.commons=WARN > log4j.logger.org.apache.struts=WARN > log4j.logger.xy=DEBUG -- Zsolt