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
The following commit(s) were added to refs/heads/master by this push:
new b93793f2 RAT-325: Reduce log level to not pollute build logs with each
filename that is being processed
b93793f2 is described below
commit b93793f28893c8ef7540884416e148b0ab59ed0c
Author: P. Ottlinger <[email protected]>
AuthorDate: Tue Jan 16 22:09:21 2024 +0100
RAT-325: Reduce log level to not pollute build logs with each filename that
is being processed
---
.../src/main/java/org/apache/rat/analysis/DocumentHeaderAnalyser.java | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git
a/apache-rat-core/src/main/java/org/apache/rat/analysis/DocumentHeaderAnalyser.java
b/apache-rat-core/src/main/java/org/apache/rat/analysis/DocumentHeaderAnalyser.java
index b984fbe9..9534db9e 100644
---
a/apache-rat-core/src/main/java/org/apache/rat/analysis/DocumentHeaderAnalyser.java
+++
b/apache-rat-core/src/main/java/org/apache/rat/analysis/DocumentHeaderAnalyser.java
@@ -55,7 +55,7 @@ class DocumentHeaderAnalyser implements IDocumentAnalyser {
@Override
public void analyse(Document document) throws RatDocumentAnalysisException
{
try (Reader reader = document.reader()) {
- log.info(format("Processing: %s", document));
+ log.debug(format("Processing: %s", document));
HeaderCheckWorker worker = new HeaderCheckWorker(reader, license,
document);
worker.read();
} catch (IOException e) {