RE: REPOST: RollingFileAppender does not create backups on WebSphere 5 on Windows

2003-09-14 Thread Tarek M. Nabil
I set to 9 and it didn't work at first. I tried different values thinking that was the problem until I reached 4 which worked for me before, and each time restarting the application. Still, as soon as the file reached the maximum size, it disappeared and even sometimes one of the older backups

Re: [Fwd: tomcat 4.1.27 log4j 1.2.8 struts 1.1 = crash on logger.debug()]

2003-09-14 Thread Jacob Kjome
I'm still unable to comprehend why you have jboss-specific jars in Tomcat??? Also, the only thing that needs to go in the common/endorsed directory is the XML parser. endorsed means that it overrides existing libraries in the JDK. Only the xerces jar needs to go in common/endorsed because it

RE: REPOST: RollingFileAppender does not create backups on WebSphere 5 on Windows

2003-09-14 Thread Duncan_Simpson
Hi Tarek, I have the same problem with the DailRollingFileAppender and Websphere 5 on Windows. Websphere 5, by default, runs all apps within the same JVM as Websphere itself, but with a different class loader for each App (Earlier versions didn't do this - I used to use WAS 3.5 which ran

Re: [Fwd: tomcat 4.1.27 log4j 1.2.8 struts 1.1 = crash on logger.debug()]

2003-09-14 Thread Scott Morgan
Hi, I just wanted to post that I found the solution to my problem, and the issue was actually with JBuilders jar utility. It was adding log4j stuff to my ae.jar file, even though I have explicitly told it not to. I am sorry that I didn't unzip my jar files earlier, but I figured checking

No of Logger instances

2003-09-14 Thread Kalra, Ashwani
Hi, Since there will be as many instances of logger as the different names that we pass, Which is good way of reducing the no of instances. Logger.getLogger(com.abc) //passing just he package or Logger.getLogger(com.abc.Class1), Logger.getLogger(com.abc.Class2) etc. Which is better in terms of