SOLR-11618: Tone down verbosity of BackupManager logging

This commit is contained in:
Varun Thacker 2017-11-07 14:31:22 -08:00
parent a03d6bc8c2
commit 1f83b1fc1c
2 changed files with 3 additions and 1 deletions

View File

@ -142,6 +142,8 @@ Other Changes
* SOLR-11606: Disable tests automatically if Mockito does not work with Java runtime (Java 10).
(Uwe Schindler)
* SOLR-11618: Tone down verbosity of BackupManager logging (Varun Thacker)
================== 7.1.0 ==================
Consult the LUCENE_CHANGES.txt file for additional, low level, changes in this release.

View File

@ -201,7 +201,7 @@ public class BackupManager {
for (String file : files) {
List<String> children = zkClient.getChildren(zkPath + "/" + file, null, true);
if (children.size() == 0) {
log.info("Writing file {}", file);
log.debug("Writing file {}", file);
byte[] data = zkClient.getData(zkPath + "/" + file, null, null, true);
try (OutputStream os = repository.createOutput(repository.resolve(dir, file))) {
os.write(data);