commons-logging might interfere with slf4j
authorKai Moritz <km@feder-software.de>
Wed, 5 Mar 2014 09:35:33 +0000 (10:35 +0100)
committerKai Moritz <kai@juplo.de>
Tue, 19 Jan 2016 16:45:42 +0000 (17:45 +0100)
See:
http://stackoverflow.com/questions/7952154/spring-resttemplate-how-to-enable-full-debugging-logging-of-requests-responses

pom.xml

diff --git a/pom.xml b/pom.xml
index b9e7a1b..5559fa2 100644 (file)
--- a/pom.xml
+++ b/pom.xml
       <groupId>org.springframework</groupId>
       <artifactId>spring-webmvc</artifactId>
       <version>${springframework.version}</version>
+      <exclusions>
+        <exclusion>
+            <groupId>commons-logging</groupId>
+            <artifactId>commons-logging</artifactId>
+        </exclusion>
+      </exclusions>
     </dependency>
 
     <!-- Tiles -->