Lowering log level.
Change-Id: Iade7f2b9aeebf73cb65830ecf3120f64da5ca7df
Showing
2 changed files
with
2 additions
and
2 deletions
... | @@ -1090,7 +1090,7 @@ public class GossipDeviceStore | ... | @@ -1090,7 +1090,7 @@ public class GossipDeviceStore |
1090 | .toList(); | 1090 | .toList(); |
1091 | 1091 | ||
1092 | if (nodeIds.size() == 1 && nodeIds.get(0).equals(self)) { | 1092 | if (nodeIds.size() == 1 && nodeIds.get(0).equals(self)) { |
1093 | - log.info("No other peers in the cluster."); | 1093 | + log.debug("No other peers in the cluster."); |
1094 | return; | 1094 | return; |
1095 | } | 1095 | } |
1096 | 1096 | ... | ... |
... | @@ -538,7 +538,7 @@ public class GossipLinkStore | ... | @@ -538,7 +538,7 @@ public class GossipLinkStore |
538 | .toList(); | 538 | .toList(); |
539 | 539 | ||
540 | if (nodeIds.size() == 1 && nodeIds.get(0).equals(self)) { | 540 | if (nodeIds.size() == 1 && nodeIds.get(0).equals(self)) { |
541 | - log.info("No other peers in the cluster."); | 541 | + log.debug("No other peers in the cluster."); |
542 | return; | 542 | return; |
543 | } | 543 | } |
544 | 544 | ... | ... |
-
Please register or login to post a comment