Jon Hall
Committed by Gerrit Code Review

Lower log level for warning message seen when starting larger clusters

Also fix message to show id instead of null

Change-Id: I91b131674088d644ee10f5d105052c42cc018984
......@@ -256,7 +256,7 @@ public class DistributedClusterStore
ControllerNode node = allNodes.get(nodeId);
// Either this node or that node is no longer part of the same cluster
if (node == null) {
log.warn("Could not find node {} in the cluster, ignoring state change", node);
log.debug("Could not find node {} in the cluster, ignoring state change", nodeId);
return;
}
ClusterEvent.Type type = newState == State.READY ? INSTANCE_READY :
......