I am using springframework in an application I am writing and I want to use SLF4J for my logging.  I noticed that Spring&#39;s logging looked different and so I added in the jcl-over-slf4j and now Spring&#39;s logging looks like mine but I am getting a TON of it at DEBUG level.  Here&#39;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&#39;s my logback.xml:<br><br>&lt;configuration&gt;<br><br>  &lt;appender name=&quot;STDOUT&quot; class=&quot;ch.qos.logback.core.ConsoleAppender&quot;&gt;<br>
    &lt;layout class=&quot;ch.qos.logback.classic.PatternLayout&quot;&gt;<br>      &lt;Pattern&gt;%d{HH:mm:ss.SSS} {%thread} %-5level %logger{36} - %msg%n&lt;/Pattern&gt;<br>    &lt;/layout&gt;<br>  &lt;/appender&gt;<br><br>
  &lt;logger name=&quot;org.springframework&quot; level=&quot;INFO&quot;/&gt;<br>  <br>  &lt;root level=&quot;info&quot;&gt;<br>    &lt;appender-ref ref=&quot;STDOUT&quot; /&gt;<br>  &lt;/root&gt;<br>&lt;/configuration&gt;<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 &lt;logger name=&quot;org.springframework&quot;...&gt;  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&#39;Simer<br>