Brian O'Connor

Changing log level from warn to debug in Stats Store.

Change-Id: I7651427d317813775a2c729682001fb888b45f1c
Note: Optical flows don't have stats.
...@@ -275,7 +275,7 @@ public class DistributedStatisticStore implements StatisticStore { ...@@ -275,7 +275,7 @@ public class DistributedStatisticStore implements StatisticStore {
275 private ConnectPoint buildConnectPoint(FlowRule rule) { 275 private ConnectPoint buildConnectPoint(FlowRule rule) {
276 PortNumber port = getOutput(rule); 276 PortNumber port = getOutput(rule);
277 if (port == null) { 277 if (port == null) {
278 - log.warn("Rule {} has no output.", rule); 278 + log.debug("Rule {} has no output.", rule);
279 return null; 279 return null;
280 } 280 }
281 ConnectPoint cp = new ConnectPoint(rule.deviceId(), port); 281 ConnectPoint cp = new ConnectPoint(rule.deviceId(), port);
......
...@@ -154,7 +154,7 @@ public class SimpleStatisticStore implements StatisticStore { ...@@ -154,7 +154,7 @@ public class SimpleStatisticStore implements StatisticStore {
154 private ConnectPoint buildConnectPoint(FlowRule rule) { 154 private ConnectPoint buildConnectPoint(FlowRule rule) {
155 PortNumber port = getOutput(rule); 155 PortNumber port = getOutput(rule);
156 if (port == null) { 156 if (port == null) {
157 - log.warn("Rule {} has no output.", rule); 157 + log.debug("Rule {} has no output.", rule);
158 return null; 158 return null;
159 } 159 }
160 ConnectPoint cp = new ConnectPoint(rule.deviceId(), port); 160 ConnectPoint cp = new ConnectPoint(rule.deviceId(), port);
......