RE: Issue with configuration status and Rolling Files

2014-10-07 Thread sujatha rdn
Yes. I am using the following list of jars in my webapp. log4j-api-2.0.jar log4j-slf4j-impl-2.0.jar ( as I am using slf4j as a interface in my application to connect to log4j2) log4j-core-2.0.jar log4j-web-2.0.jar Here is my log4j2.xml and web.xml as well. I have added a new log file in the log4

RE: Issue with configuration status and Rolling Files

2014-10-07 Thread Gary Gregory
Can you try version 2.0.2?  Perhaps a local build of the master from git? Gary Original message From: sujatha rdn Date:10/07/2014 04:46 (GMT-05:00) To: Log4J Users List Subject: RE: Issue with configuration status and Rolling Files Yes. I am using the following list of

Re: Issue with configuration status and Rolling Files

2014-10-07 Thread Matt Sicker
Let me make sure I understand how you're deploying this. Are you including this all in your webapp and deploying to Tomcat? As in not putting it in Tomcat's lib directory (which if you did that, you shouldn't include log4j-web; better support for this in upcoming 2.1 release)? Also, what version o

RE: Issue with configuration status and Rolling Files

2014-10-07 Thread sujatha rdn
I think I found the issue of what it is. But couldn’t get the fix of that. Actually I created two loggers from the same JAVA file. And then given their configuration in log4j2.xml in the following way. And I am accessing loggers in JAVA in the following way: private static final org.slf4j.Logger

Re: Issue with configuration status and Rolling Files

2014-10-07 Thread Remko Popma
This sounds like a reincarnation of LOG4J2-531 . That's not good news... On Tue, Oct 7, 2014 at 11:59 PM, sujatha rdn wrote: > I think I found the issue of what it is. But couldn’t get the fix of that. > > Actually I created two loggers from the