This is an automated email from the ASF dual-hosted git repository. dsmiley pushed a commit to branch branch_10x in repository https://gitbox.apache.org/repos/asf/solr.git
commit 1394767df72058f1e07dbbf260ad347878accd02 Author: David Smiley <[email protected]> AuthorDate: Wed Aug 12 15:00:22 2026 -0400 build: rat -- suppress noise (#4687) (cherry picked from commit 0f044330631441ccd9eb11c07c90ad7e541b867a) --- gradle/validation/rat-sources.gradle | 3 +++ 1 file changed, 3 insertions(+) diff --git a/gradle/validation/rat-sources.gradle b/gradle/validation/rat-sources.gradle index 27c00a4ddf1..06cd1183c1d 100644 --- a/gradle/validation/rat-sources.gradle +++ b/gradle/validation/rat-sources.gradle @@ -246,6 +246,9 @@ allprojects { } }) inputFileTrees.add(defaultScanFileTree) + + // RAT is noisy, even when there's no problem. So log at DEBUG + logging.captureStandardOutput(LogLevel.DEBUG) } }
