Committed by
Gerrit Code Review
Less vesbose info level logging in DistributedTopologyStore
Change-Id: I1a7fbcf8e867e95bc514fa4745f35226b99d0d3b
Showing
1 changed file
with
1 additions
and
1 deletions
... | @@ -330,7 +330,7 @@ public class DistributedTopologyStore | ... | @@ -330,7 +330,7 @@ public class DistributedTopologyStore |
330 | public void event(EventuallyConsistentMapEvent<DeviceId, Set<ConnectPoint>> event) { | 330 | public void event(EventuallyConsistentMapEvent<DeviceId, Set<ConnectPoint>> event) { |
331 | if (event.type() == EventuallyConsistentMapEvent.Type.PUT) { | 331 | if (event.type() == EventuallyConsistentMapEvent.Type.PUT) { |
332 | if (!event.value().isEmpty()) { | 332 | if (!event.value().isEmpty()) { |
333 | - log.info("Cluster rooted at {} has {} broadcast-points; #{}", | 333 | + log.debug("Cluster rooted at {} has {} broadcast-points; #{}", |
334 | event.key(), event.value().size(), event.value().hashCode()); | 334 | event.key(), event.value().size(), event.value().hashCode()); |
335 | } | 335 | } |
336 | } | 336 | } | ... | ... |
-
Please register or login to post a comment