need functionality to truncate the tail of fields using PatternLa yout

2003-10-14 Thread Lethin, Doug
to this list with the subject PATCH, or [PATCH], and then include in the message the three diff -c outputs? Is this kind of functionality useful to others? Is this the approach I should be taking when proposing changes? Thanks in advance. Doug -

Re: Property to set Level of a Category

2002-07-08 Thread Doug
log4j.category.= or log4j.category.=, --- AMIT BHUTRA <[EMAIL PROTECTED]> wrote: > Hi, > How do i set Level for a category from a .properties > file? > > Like, to associate an appender RollingFileApender to > category R, we add > following line to the .properties file.. > > log4j.appender.R=o

RE: Binary compatibility between versions of log4j

2002-06-06 Thread Doug
well said. the Logger -> Category change is quite significant and raised some concerns of mine as well. --- John Armstrong <[EMAIL PROTECTED]> wrote: > I fully agree with the points you make - and thank > you for clarifying the > expected lifecycle of log4j. > > Unfortunately your answer doesn'

Re: boolean Configurator.isConfigured()

2002-04-15 Thread doug b
that would be nice. what we did instead was: Enumeration iterator = Category.getRoot().getAllAppenders(); if (!iterator.hasMoreElements()) { BasicConfigurator.configure(); } --- Endre_Stølsvik <[EMAIL PROTECTED]> wrote: > A method for asking whether the log4j system is > configured woul

Re: DailyRollingFileAppender, TimeZone, bugs?

2002-03-25 Thread doug b
anyone? --- doug b <[EMAIL PROTECTED]> wrote: > first, we are using 1.1.4 and we also have seen the > problem where the rollover doesn't occur if the > program isn't running when the time change occurs. > a > search showed the statement that this was fixed in &g

DailyRollingFileAppender, TimeZone, bugs?

2002-03-21 Thread doug b
rely different from the DailyRollingFileAppender. is this a capability that someone has already written? has it been requested before? would it be worthwhile to fold into the DailyRollingFileAppender? thanks for any thoughts. -doug __ Do You Yahoo

reload properties with default initialization?

2001-12-13 Thread doug b
posted this to the user's group, but got no responses: -- is there any reason not to make the default initialization code, from the Category static initializer, available as a public static method? (for now, i've copied that static block into my