You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@creadur.apache.org by po...@apache.org on 2017/10/18 19:53:00 UTC

svn commit: r1812564 - in /creadur/rat/trunk: apache-rat-plugin/src/main/java/org/apache/rat/mp/AbstractRatMojo.java src/changes/changes.xml

Author: pottlinger
Date: Wed Oct 18 19:53:00 2017
New Revision: 1812564

URL: http://svn.apache.org/viewvc?rev=1812564&view=rev
Log:
RAT-241: Use lower log level

Modified:
    creadur/rat/trunk/apache-rat-plugin/src/main/java/org/apache/rat/mp/AbstractRatMojo.java
    creadur/rat/trunk/src/changes/changes.xml

Modified: creadur/rat/trunk/apache-rat-plugin/src/main/java/org/apache/rat/mp/AbstractRatMojo.java
URL: http://svn.apache.org/viewvc/creadur/rat/trunk/apache-rat-plugin/src/main/java/org/apache/rat/mp/AbstractRatMojo.java?rev=1812564&r1=1812563&r2=1812564&view=diff
==============================================================================
--- creadur/rat/trunk/apache-rat-plugin/src/main/java/org/apache/rat/mp/AbstractRatMojo.java (original)
+++ creadur/rat/trunk/apache-rat-plugin/src/main/java/org/apache/rat/mp/AbstractRatMojo.java Wed Oct 18 19:53:00 2017
@@ -405,8 +405,9 @@ public abstract class AbstractRatMojo ex
         if (excludes == null || excludes.length == 0) {
             getLog().info("No excludes explicitly specified.");
         } else {
+            getLog().info(excludes.length + " explicit excludes (use -debug for more details).");
         	for (final String exclude : excludes) {
-                getLog().info("Exclude: " + exclude);
+                getLog().debug("Exclude: " + exclude);
             }
         }
         if (excludes != null) {

Modified: creadur/rat/trunk/src/changes/changes.xml
URL: http://svn.apache.org/viewvc/creadur/rat/trunk/src/changes/changes.xml?rev=1812564&r1=1812563&r2=1812564&view=diff
==============================================================================
--- creadur/rat/trunk/src/changes/changes.xml (original)
+++ creadur/rat/trunk/src/changes/changes.xml Wed Oct 18 19:53:00 2017
@@ -55,6 +55,9 @@ The <action> type attribute can be add,u
 
   <body>
     <release version="0.13" date="2017-xx-xx" description="Current SNAPSHOT - to be done">
+      <action issue="RAT-241" type="add" due-to="Andrew Gaul" dev="pottlinger">
+	Reduce default log level of used exclusions to debug, only print totals into the maven log like includes.
+      </action>
       <action issue="RAT-240" type="fix" dev="pottlinger">
 	Overhauled CLI module to allow file based exclusions with wildcards and explicit file names.
       </action>