This is an automated email from the ASF dual-hosted git repository.

fpapon pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/shiro.git


The following commit(s) were added to refs/heads/master by this push:
     new ad2a77f  Reduce shiro test logging level to INFO
     new 95fd2dc  Merge pull request #140 from bdemers/reduce-test-log
ad2a77f is described below

commit ad2a77fbbef9c33908d168d7aaceb357d5fde051
Author: Brian Demers <[email protected]>
AuthorDate: Fri May 31 15:41:48 2019 -0400

    Reduce shiro test logging level to INFO
---
 core/src/test/resources/log4j.properties                      | 2 +-
 integration-tests/guice3/src/main/resources/log4j.properties  | 2 +-
 integration-tests/guice4/src/main/resources/log4j.properties  | 2 +-
 samples/guice/src/main/resources/log4j.properties             | 2 +-
 samples/jaxrs/src/main/resources/logback.xml                  | 2 +-
 samples/quickstart-guice/src/main/resources/log4j.properties  | 2 +-
 samples/quickstart/src/main/resources/log4j.properties        | 2 +-
 samples/servlet-plugin/src/main/resources/log4j.properties    | 2 +-
 samples/spring-boot/src/main/resources/application.properties | 2 +-
 samples/spring-hibernate/src/main/resources/log4j.properties  | 2 +-
 samples/spring-mvc/src/main/resources/log4j.properties        | 2 +-
 samples/web/src/main/resources/log4j.properties               | 2 +-
 support/ehcache/src/test/resources/log4j.properties           | 2 +-
 support/guice/src/test/resources/log4j.properties             | 2 +-
 support/hazelcast/src/test/resources/log4j.properties         | 2 +-
 web/src/test/resources/log4j.properties                       | 2 +-
 16 files changed, 16 insertions(+), 16 deletions(-)

diff --git a/core/src/test/resources/log4j.properties 
b/core/src/test/resources/log4j.properties
index acf1e2a..abd925d 100644
--- a/core/src/test/resources/log4j.properties
+++ b/core/src/test/resources/log4j.properties
@@ -35,5 +35,5 @@ log4j.logger.org.apache=WARN
 
 log4j.logger.net.sf.ehcache=WARN
 
-log4j.logger.org.apache.shiro=TRACE
+log4j.logger.org.apache.shiro=INFO
 log4j.logger.org.apache.shiro.util.ThreadContext=WARN
\ No newline at end of file
diff --git a/integration-tests/guice3/src/main/resources/log4j.properties 
b/integration-tests/guice3/src/main/resources/log4j.properties
index b10506b..fab1c76 100644
--- a/integration-tests/guice3/src/main/resources/log4j.properties
+++ b/integration-tests/guice3/src/main/resources/log4j.properties
@@ -39,7 +39,7 @@ log4j.logger.org.quartz=WARN
 # Apache Shiro
 # =============================================================================
 # Shiro security framework
-log4j.logger.org.apache.shiro=TRACE
+log4j.logger.org.apache.shiro=INFO
 #log4j.logger.org.apache.shiro.realm.text.PropertiesRealm=INFO
 #log4j.logger.org.apache.shiro.cache.ehcache.EhCache=INFO
 #log4j.logger.org.apache.shiro.io=INFO
diff --git a/integration-tests/guice4/src/main/resources/log4j.properties 
b/integration-tests/guice4/src/main/resources/log4j.properties
index b10506b..fab1c76 100644
--- a/integration-tests/guice4/src/main/resources/log4j.properties
+++ b/integration-tests/guice4/src/main/resources/log4j.properties
@@ -39,7 +39,7 @@ log4j.logger.org.quartz=WARN
 # Apache Shiro
 # =============================================================================
 # Shiro security framework
-log4j.logger.org.apache.shiro=TRACE
+log4j.logger.org.apache.shiro=INFO
 #log4j.logger.org.apache.shiro.realm.text.PropertiesRealm=INFO
 #log4j.logger.org.apache.shiro.cache.ehcache.EhCache=INFO
 #log4j.logger.org.apache.shiro.io=INFO
diff --git a/samples/guice/src/main/resources/log4j.properties 
b/samples/guice/src/main/resources/log4j.properties
index b10506b..fab1c76 100644
--- a/samples/guice/src/main/resources/log4j.properties
+++ b/samples/guice/src/main/resources/log4j.properties
@@ -39,7 +39,7 @@ log4j.logger.org.quartz=WARN
 # Apache Shiro
 # =============================================================================
 # Shiro security framework
-log4j.logger.org.apache.shiro=TRACE
+log4j.logger.org.apache.shiro=INFO
 #log4j.logger.org.apache.shiro.realm.text.PropertiesRealm=INFO
 #log4j.logger.org.apache.shiro.cache.ehcache.EhCache=INFO
 #log4j.logger.org.apache.shiro.io=INFO
diff --git a/samples/jaxrs/src/main/resources/logback.xml 
b/samples/jaxrs/src/main/resources/logback.xml
index a627407..0001cde 100644
--- a/samples/jaxrs/src/main/resources/logback.xml
+++ b/samples/jaxrs/src/main/resources/logback.xml
@@ -29,5 +29,5 @@
         <appender-ref ref="STDOUT" />
     </root>
 
-    <logger name="org.apache.shiro.web.jaxrs" level="DEBUG"/>
+    <logger name="org.apache.shiro.web.jaxrs" level="INFO"/>
 </configuration>
\ No newline at end of file
diff --git a/samples/quickstart-guice/src/main/resources/log4j.properties 
b/samples/quickstart-guice/src/main/resources/log4j.properties
index 779033d..fef559d 100644
--- a/samples/quickstart-guice/src/main/resources/log4j.properties
+++ b/samples/quickstart-guice/src/main/resources/log4j.properties
@@ -29,7 +29,7 @@ log4j.logger.org.apache=WARN
 log4j.logger.org.springframework=WARN
 
 # Default Shiro logging
-log4j.logger.org.apache.shiro=TRACE
+log4j.logger.org.apache.shiro=INFO
 
 # Disable verbose logging
 log4j.logger.org.apache.shiro.util.ThreadContext=WARN
diff --git a/samples/quickstart/src/main/resources/log4j.properties 
b/samples/quickstart/src/main/resources/log4j.properties
index 779033d..fef559d 100644
--- a/samples/quickstart/src/main/resources/log4j.properties
+++ b/samples/quickstart/src/main/resources/log4j.properties
@@ -29,7 +29,7 @@ log4j.logger.org.apache=WARN
 log4j.logger.org.springframework=WARN
 
 # Default Shiro logging
-log4j.logger.org.apache.shiro=TRACE
+log4j.logger.org.apache.shiro=INFO
 
 # Disable verbose logging
 log4j.logger.org.apache.shiro.util.ThreadContext=WARN
diff --git a/samples/servlet-plugin/src/main/resources/log4j.properties 
b/samples/servlet-plugin/src/main/resources/log4j.properties
index 51c6848..70885a6 100644
--- a/samples/servlet-plugin/src/main/resources/log4j.properties
+++ b/samples/servlet-plugin/src/main/resources/log4j.properties
@@ -41,7 +41,7 @@ log4j.logger.org.quartz=WARN
 # Apache Shiro
 # =============================================================================
 # Shiro security framework
-log4j.logger.org.apache.shiro=TRACE
+log4j.logger.org.apache.shiro=INFO
 #log4j.logger.org.apache.shiro.realm.text.PropertiesRealm=INFO
 #log4j.logger.org.apache.shiro.cache.ehcache.EhCache=INFO
 #log4j.logger.org.apache.shiro.io=INFO
diff --git a/samples/spring-boot/src/main/resources/application.properties 
b/samples/spring-boot/src/main/resources/application.properties
index 986fca9..e8e058a 100644
--- a/samples/spring-boot/src/main/resources/application.properties
+++ b/samples/spring-boot/src/main/resources/application.properties
@@ -17,5 +17,5 @@
 # under the License.
 #
 
-logging.level.org.springframework.web=DEBUG
+logging.level.org.springframework.web=INFO
 logging.level.org.hibernate=ERROR
\ No newline at end of file
diff --git a/samples/spring-hibernate/src/main/resources/log4j.properties 
b/samples/spring-hibernate/src/main/resources/log4j.properties
index 75afa85..aca9768 100644
--- a/samples/spring-hibernate/src/main/resources/log4j.properties
+++ b/samples/spring-hibernate/src/main/resources/log4j.properties
@@ -32,7 +32,7 @@ log4j.logger.org.springframework=WARN
 log4j.logger.org.hibernate=WARN
 
 # Default Shiro logging
-log4j.logger.org.apache.shiro=TRACE
+log4j.logger.org.apache.shiro=INFO
 
 # Disable verbose logging
 log4j.logger.org.apache.shiro.util.ThreadContext=WARN
diff --git a/samples/spring-mvc/src/main/resources/log4j.properties 
b/samples/spring-mvc/src/main/resources/log4j.properties
index 829ad67..8c93e70 100644
--- a/samples/spring-mvc/src/main/resources/log4j.properties
+++ b/samples/spring-mvc/src/main/resources/log4j.properties
@@ -29,7 +29,7 @@ log4j.logger.org.apache=WARN
 log4j.logger.org.springframework=INFO
 
 # Default Shiro logging
-log4j.logger.org.apache.shiro=TRACE
+log4j.logger.org.apache.shiro=INFO
 
 # Disable verbose logging
 log4j.logger.org.apache.shiro.util.ThreadContext=WARN
diff --git a/samples/web/src/main/resources/log4j.properties 
b/samples/web/src/main/resources/log4j.properties
index b51cfa5..bcfbdc2 100644
--- a/samples/web/src/main/resources/log4j.properties
+++ b/samples/web/src/main/resources/log4j.properties
@@ -40,7 +40,7 @@ log4j.logger.org.quartz=WARN
 # Apache Shiro
 # =============================================================================
 # Shiro security framework
-log4j.logger.org.apache.shiro=TRACE
+log4j.logger.org.apache.shiro=INFO
 #log4j.logger.org.apache.shiro.realm.text.PropertiesRealm=INFO
 #log4j.logger.org.apache.shiro.cache.ehcache.EhCache=INFO
 #log4j.logger.org.apache.shiro.io=INFO
diff --git a/support/ehcache/src/test/resources/log4j.properties 
b/support/ehcache/src/test/resources/log4j.properties
index 0d51520..544fc45 100644
--- a/support/ehcache/src/test/resources/log4j.properties
+++ b/support/ehcache/src/test/resources/log4j.properties
@@ -33,5 +33,5 @@ log4j.logger.net.sf.ehcache=INFO
 # General Apache libraries is WARN
 log4j.logger.org.apache=WARN
 
-log4j.logger.org.apache.shiro=TRACE
+log4j.logger.org.apache.shiro=INFO
 log4j.logger.org.apache.shiro.util.ThreadContext=WARN
\ No newline at end of file
diff --git a/support/guice/src/test/resources/log4j.properties 
b/support/guice/src/test/resources/log4j.properties
index bbb023d..d8ff895 100644
--- a/support/guice/src/test/resources/log4j.properties
+++ b/support/guice/src/test/resources/log4j.properties
@@ -30,5 +30,5 @@ log4j.appender.logfile.layout.ConversionPattern=%d %p [%c] - 
%m%n
 # General Apache libraries is WARN
 log4j.logger.org.apache=WARN
 
-log4j.logger.org.apache.shiro=TRACE
+log4j.logger.org.apache.shiro=INFO
 log4j.logger.org.apache.shiro.util.ThreadContext=WARN
\ No newline at end of file
diff --git a/support/hazelcast/src/test/resources/log4j.properties 
b/support/hazelcast/src/test/resources/log4j.properties
index e629e58..e65120e 100644
--- a/support/hazelcast/src/test/resources/log4j.properties
+++ b/support/hazelcast/src/test/resources/log4j.properties
@@ -29,7 +29,7 @@ log4j.appender.logfile.layout.ConversionPattern=%d %p [%c] - 
%m%n
 # General Apache libraries is WARN
 log4j.logger.org.apache=WARN
 
-log4j.logger.com.hazelcast=DEBUG
+log4j.logger.com.hazelcast=INFO
 
 log4j.logger.org.apache.shiro=INFO
 log4j.logger.org.apache.shiro.util.ThreadContext=WARN
\ No newline at end of file
diff --git a/web/src/test/resources/log4j.properties 
b/web/src/test/resources/log4j.properties
index 0462fd8..bc62a54 100644
--- a/web/src/test/resources/log4j.properties
+++ b/web/src/test/resources/log4j.properties
@@ -34,5 +34,5 @@ log4j.logger.org.apache=WARN
 
 log4j.logger.net.sf.ehcache=WARN
 
-log4j.logger.org.apache.shiro=TRACE
+log4j.logger.org.apache.shiro=INFO
 log4j.logger.org.apache.shiro.util.ThreadContext=WARN
\ No newline at end of file

Reply via email to