mirror of https://github.com/apache/lucene.git
SOLR-14523: moved logger message to info so that it doesn't pollute console on regular runs.
This commit is contained in:
parent
f9fff6e1ed
commit
1d143744bd
|
@ -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).',
|
||||
|
|
Loading…
Reference in New Issue