SOLR-14523: moved logger message to info so that it doesn't pollute console on regular runs.

This commit is contained in:
Dawid Weiss 2020-07-20 12:47:14 +02:00
parent f9fff6e1ed
commit 1d143744bd
1 changed files with 1 additions and 1 deletions

View File

@ -238,7 +238,7 @@ class ValidateLogCallsTask extends DefaultTask {
@TaskAction
def checkLogLines() {
sourceFiles.each { checkFile(it) }
logger.warn("Checked: ${sourceFiles.files.size()}")
logger.info("Checked: ${sourceFiles.files.size()}")
if (errsFound > 0) {
throw new BuildException(String.format(Locale.ENGLISH, 'Found %d violations in source files (%s).',