Remove log from get methods on DistributedGroupStore
Change-Id: I170fa833b885c5704c8b84a87eebf82dc70f5761
Showing
1 changed file
with
0 additions
and
4 deletions
... | @@ -313,8 +313,6 @@ public class DistributedGroupStore | ... | @@ -313,8 +313,6 @@ public class DistributedGroupStore |
313 | @Override | 313 | @Override |
314 | public Iterable<Group> getGroups(DeviceId deviceId) { | 314 | public Iterable<Group> getGroups(DeviceId deviceId) { |
315 | // flatten and make iterator unmodifiable | 315 | // flatten and make iterator unmodifiable |
316 | - log.debug("getGroups: for device {} total number of groups {}", | ||
317 | - deviceId, getGroupStoreKeyMap().values().size()); | ||
318 | return FluentIterable.from(getGroupStoreKeyMap().values()) | 316 | return FluentIterable.from(getGroupStoreKeyMap().values()) |
319 | .filter(input -> input.deviceId().equals(deviceId)) | 317 | .filter(input -> input.deviceId().equals(deviceId)) |
320 | .transform(input -> input); | 318 | .transform(input -> input); |
... | @@ -322,8 +320,6 @@ public class DistributedGroupStore | ... | @@ -322,8 +320,6 @@ public class DistributedGroupStore |
322 | 320 | ||
323 | private Iterable<StoredGroupEntry> getStoredGroups(DeviceId deviceId) { | 321 | private Iterable<StoredGroupEntry> getStoredGroups(DeviceId deviceId) { |
324 | // flatten and make iterator unmodifiable | 322 | // flatten and make iterator unmodifiable |
325 | - log.debug("getGroups: for device {} total number of groups {}", | ||
326 | - deviceId, getGroupStoreKeyMap().values().size()); | ||
327 | return FluentIterable.from(getGroupStoreKeyMap().values()) | 323 | return FluentIterable.from(getGroupStoreKeyMap().values()) |
328 | .filter(input -> input.deviceId().equals(deviceId)); | 324 | .filter(input -> input.deviceId().equals(deviceId)); |
329 | } | 325 | } | ... | ... |
-
Please register or login to post a comment