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
Showing
1 changed file
with
1 additions
and
1 deletions
... | @@ -256,7 +256,7 @@ public class DistributedClusterStore | ... | @@ -256,7 +256,7 @@ public class DistributedClusterStore |
256 | ControllerNode node = allNodes.get(nodeId); | 256 | ControllerNode node = allNodes.get(nodeId); |
257 | // Either this node or that node is no longer part of the same cluster | 257 | // Either this node or that node is no longer part of the same cluster |
258 | if (node == null) { | 258 | if (node == null) { |
259 | - log.warn("Could not find node {} in the cluster, ignoring state change", node); | 259 | + log.debug("Could not find node {} in the cluster, ignoring state change", nodeId); |
260 | return; | 260 | return; |
261 | } | 261 | } |
262 | ClusterEvent.Type type = newState == State.READY ? INSTANCE_READY : | 262 | ClusterEvent.Type type = newState == State.READY ? INSTANCE_READY : | ... | ... |
-
Please register or login to post a comment