mirror of https://github.com/apache/lucene.git
change NodeLostTrigger's initial run() log from INFO to DEBUG
This commit is contained in:
parent
6587f640d2
commit
de65b45fca
|
@ -149,7 +149,7 @@ public class NodeLostTrigger extends TriggerBase {
|
|||
}
|
||||
|
||||
Set<String> newLiveNodes = new HashSet<>(cloudManager.getClusterStateProvider().getLiveNodes());
|
||||
log.info("Running NodeLostTrigger: {} with currently live nodes: {} and last live nodes: {}", name, newLiveNodes.size(), lastLiveNodes.size());
|
||||
log.debug("Running NodeLostTrigger: {} with currently live nodes: {} and last live nodes: {}", name, newLiveNodes.size(), lastLiveNodes.size());
|
||||
|
||||
// have any nodes that we were tracking been added to the cluster?
|
||||
// if so, remove them from the tracking map
|
||||
|
|
Loading…
Reference in New Issue