change NodeLostTrigger's initial run() log from INFO to DEBUG

This commit is contained in:
Chris Hostetter 2018-12-11 13:18:32 -07:00
parent 6587f640d2
commit de65b45fca
1 changed files with 1 additions and 1 deletions

View File

@ -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