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 2020/02/27 22:18:48 UTC

[creadur-rat] 01/02: RAT-267: Apply patch from Jira - report to stderr instead of SystemOut

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

pottlinger pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/creadur-rat.git

commit 52ed7d13234dd7167a8af5421e0b9490e2fce7fd
Author: Hugo Hirsch <gi...@hugo-hirsch.de>
AuthorDate: Thu Feb 27 23:16:14 2020 +0100

    RAT-267: Apply patch from Jira - report to stderr instead of SystemOut
---
 apache-rat-core/src/main/java/org/apache/rat/Report.java | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/apache-rat-core/src/main/java/org/apache/rat/Report.java b/apache-rat-core/src/main/java/org/apache/rat/Report.java
index 66fd24d..4dff579 100644
--- a/apache-rat-core/src/main/java/org/apache/rat/Report.java
+++ b/apache-rat-core/src/main/java/org/apache/rat/Report.java
@@ -136,7 +136,7 @@ public class Report {
                 System.err.println("Will skip given exclusion '" + exclude + "' due to " + e);
             }
         }
-        System.out.println("Ignored " + ignoredLines + " lines in your exclusion files as comments or empty lines.");
+        System.err.println("Ignored " + ignoredLines + " lines in your exclusion files as comments or empty lines.");
         return new NotFileFilter(orFilter);
     }