RE: Options for appenders

2002-03-04 Thread Jim Moore
Standard JavaBeans convention. So if you have a option called "president" that wants the name of the current U.S. President, you would have a method called setPresident(String pres) and getPresident(). Then, in the log4j.properties file you would have a line like "MAIN.president=Bush" You can f

Re: AsyncAppender features...

2002-03-04 Thread Scott Farquhar
Whilst you are waiting for people to decide on this - can I suggest that you go ahead an create a new Appender that works to your specifications. You call this something new - eg. TailDropAsyncAppender. I am not sure if dropping log-lines is what people would like, but while they are decidin

AsyncAppender features...

2002-03-04 Thread Niclas Hedhman
I have posted this same issue when I first joined the mailing list, but never saw it show up, so... The AsyncAppender is a great feature for slow logging devices, such as file and sockets, but if you have too much load the async FIFO buffer will wait (or so it seems) for the secondary appende

Options for appenders

2002-03-04 Thread Gary Udstrand
I am writing my own appender and would like to pass in some options. I am not sure that I quite understand the mechanism that is to be used to do this, can someone give me a point in the right direction? I apologize if this has been asked and answered in previous dialogues but I was unab

Re: [PATCH] Additional PatternLayout conversion characters

2002-03-04 Thread goetz
Hi Ceki That's fine for me. However, instead of having long names for Priorities/Levels, I would like to use the one character abbreviations. Therefore, those classes would need to be adapted. Do I have any luck with that? regards -Bernd. Ceki Gülcü wrote: > > Bernd, > > I would like to allow

log4j 1.2 beta4 available

2002-03-04 Thread Ceki Gülcü
Hi all, Log4j 1.2 beta4 has been just released. This latest version corrects a rather annoying classloading problem. This is what HISTORY file has to say: - Replaced the custom class loading based on the thread context class loader with a simple Class.forName() call. This solves two all

Re: Making object rendering more extensible

2002-03-04 Thread Endre Stølsvik
On Tue, 26 Feb 2002 [EMAIL PROTECTED] wrote: | I use two appenders: one ConsoleAppender and the other JMSAppender | | log4j.rootCategory=DEBUG, A1,A2 | log4j.appender.A1=org.apache.log4j.net.JMSAppender | . | log4j.appender.A2=org.apache.log4j.ConsoleAppender | . | | Right now, as I under