[GUMP@lsd]: logging-log4j/log4j-tests failed

2004-04-15 Thread ceki
To whom it may engage... This is an automated request, but not an unsolicited one. For help understanding the request please visit http://gump.apache.org/nagged.html, and/or contact [EMAIL PROTECTED] Project log4j-tests has an issue affecting its community integration. The current sta

Re: Declaring a Logger in an Abstract Class

2004-04-15 Thread Jacob Kjome
At 03:31 PM 4/15/2004 -0400, you wrote: Your answer raises another question. I have a factory that creates (possibly) dozens of instances of my subclasses. Would your suggestion cause a logger to be created for each and every instance of a subclass? This would eat resources. Is there a way to

Re: Declaring a Logger in an Abstract Class

2004-04-15 Thread Robert Pepersack
Your answer raises another question. I have a factory that creates (possibly) dozens of instances of my subclasses. Would your suggestion cause a logger to be created for each and every instance of a subclass? This would eat resources. Is there a way to use the Logger hierarchy to get around

Re: Declaring a Logger in an Abstract Class

2004-04-15 Thread Elias Ross
On Thu, 2004-04-15 at 05:27, Robert Pepersack wrote: > Hi all. > > I have an abstract class that has many subclasses. There are several options: > > 1. Declare it in the abstract class using the String name of the abstract > class. For example: > > protected static final Logger logger =

RE: DateFormatFileAppender

2004-04-15 Thread Shapira, Yoav
Hi, 1. This already exists (DailyRollingFileAppender in log4j 1.2 and various options in log4j 1.3), 2. This is the wrong list: log4j-user is the place. Yoav Shapira Millennium Research Informatics -Original Message- From: James Stauffer [mailto:[EMAIL PROTECTED] Sent: Tuesday, April 13

Declaring a Logger in an Abstract Class

2004-04-15 Thread Robert Pepersack
Hi all. I have an abstract class that has many subclasses. There are several options: 1. Declare it in the abstract class using the String name of the abstract class. For example: protected static final Logger logger = Logger.getLogger("org.happy.Superclass"); // Logger does not have na