stats manager cleanup
Change-Id: Icf5ab2ef39d3ad887c56b2d49ebb418e9de4ff2d
Showing
1 changed file
with
0 additions
and
4 deletions
... | @@ -157,16 +157,12 @@ public class StatisticManager implements StatisticService { | ... | @@ -157,16 +157,12 @@ public class StatisticManager implements StatisticService { |
157 | case RULE_UPDATED: | 157 | case RULE_UPDATED: |
158 | if (rule instanceof FlowEntry) { | 158 | if (rule instanceof FlowEntry) { |
159 | statisticStore.addOrUpdateStatistic((FlowEntry) rule); | 159 | statisticStore.addOrUpdateStatistic((FlowEntry) rule); |
160 | - } else { | ||
161 | - log.warn("IT AIN'T A FLOWENTRY"); | ||
162 | } | 160 | } |
163 | break; | 161 | break; |
164 | case RULE_ADD_REQUESTED: | 162 | case RULE_ADD_REQUESTED: |
165 | - log.info("Preparing for stats"); | ||
166 | statisticStore.prepareForStatistics(rule); | 163 | statisticStore.prepareForStatistics(rule); |
167 | break; | 164 | break; |
168 | case RULE_REMOVE_REQUESTED: | 165 | case RULE_REMOVE_REQUESTED: |
169 | - log.info("Removing stats"); | ||
170 | statisticStore.removeFromStatistics(rule); | 166 | statisticStore.removeFromStatistics(rule); |
171 | break; | 167 | break; |
172 | case RULE_REMOVED: | 168 | case RULE_REMOVED: | ... | ... |
-
Please register or login to post a comment