I am using springframework in an application I am writing and I want to use SLF4J for my logging. I noticed that Spring's logging looked different and so I added in the jcl-over-slf4j and now Spring's logging looks like mine but I am getting a TON of it at DEBUG level. Here's a sample:<br>
<br>17:52:42.134 {main} INFOÂ o.s.b.f.xml.XmlBeanDefinitionReader - Loading XML bean definitions from class path resource [bootstrap-context.xml]<br>17:52:42.154 {main} DEBUG o.s.b.f.xml.DefaultDocumentLoader - Using JAXP provider [com.sun.org.apache.xerces.internal.jaxp.DocumentBuilderFactoryImpl]<br>
17:52:42.246 {main} DEBUG o.s.b.f.xml.PluggableSchemaResolver - Loading schema mappings from [META-INF/spring.schemas]<br>...<br><br>Here's my logback.xml:<br><br><configuration><br><br>Â <appender name="STDOUT" class="ch.qos.logback.core.ConsoleAppender"><br>
   <layout class="ch.qos.logback.classic.PatternLayout"><br>     <Pattern>%d{HH:mm:ss.SSS} {%thread} %-5level %logger{36} - %msg%n</Pattern><br>   </layout><br> </appender><br><br>
 <logger name="org.springframework" level="INFO"/><br> <br> <root level="info"><br>   <appender-ref ref="STDOUT" /><br> </root><br></configuration><br>
<br>I know I have this in the right place because, I changed some small aspect of the format Pattern to be sure.<br><br>I first tried it without the <logger name="org.springframework"...>Â tag and got the same result.<br>
<br>Am I missing something here? Seems to me this config should work, at least according to my reading of the logback docs.<br><br>Should I be posting this to the logback forum?<br><br>Anyway, any help would be greatly appreciated.<br>
<br>Thanks,<br><br>Dana P'Simer<br>