I am Eclipse and i am creating web project. Also i am using SLF4J for storing log into log file. I am putting log4j.properties file into the WEB-INF/classes folder
when i access the login page,the all associated logs and my debug statement log are get loaded into the log file. But i want the specific log (i.e project specific log) should be loaded into the log file instead of others log.
On the log file i can see
10/20/2010 10:16:24 - DEBUG - org.apache.commons.digester.Digester.sax
.
.
.
10/20/2010 10:16:24 - DEBUG - org.apache.commons.digester.Digester - [ObjectCreateRule]{resource-config/resource}New org.ajax4jsf.javascript.AjaxScript
.
.
10/20/2010 10:16:24 - DEBUG - org.apache.commons.digester.Digester - [ObjectCreateRule]{resource-config/resource}New
.
.
.
10/20/2010 10:16:24 - DEBUG - org.apache.commons.digester.Digester.sax
.
.
.
10/20/2010 10:16:24 - DEBUG - org.apache.commons.digester.Digester - [ObjectCreateRule]{resource-config/resource}New org.ajax4jsf.javascript.AjaxScript
.
.
10/20/2010 10:16:24 - DEBUG - org.apache.commons.digester.Digester - [ObjectCreateRule]{resource-config/resource}New
.
.
.
Can anyone help me to find out to store specific project related log into log file.??
Thanks