Committed by
Yuta HIGUCHI
lower log level
Change-Id: Ib2aabc6b002170fac31ea3ddaf171bb8cf81e522
Showing
1 changed file
with
2 additions
and
2 deletions
| ... | @@ -196,10 +196,10 @@ public class TopologyMetrics implements TopologyMetricsService { | ... | @@ -196,10 +196,10 @@ public class TopologyMetrics implements TopologyMetricsService { |
| 196 | // Ignore PORT_STATS_UPDATED probe event from interfering with | 196 | // Ignore PORT_STATS_UPDATED probe event from interfering with |
| 197 | // other device event timestamps | 197 | // other device event timestamps |
| 198 | if (event.type() == DeviceEvent.Type.PORT_STATS_UPDATED) { | 198 | if (event.type() == DeviceEvent.Type.PORT_STATS_UPDATED) { |
| 199 | - log.info("PORT_STATS_UPDATED event ignored from metrics"); | 199 | + log.debug("PORT_STATS_UPDATED event ignored from metrics"); |
| 200 | } else { | 200 | } else { |
| 201 | recordEvent(event, topologyDeviceEventMetric); | 201 | recordEvent(event, topologyDeviceEventMetric); |
| 202 | - log.info("Device Event: time = {} type = {} event = {}", | 202 | + log.debug("Device Event: time = {} type = {} event = {}", |
| 203 | event.time(), event.type(), event); | 203 | event.time(), event.type(), event); |
| 204 | } | 204 | } |
| 205 | } | 205 | } | ... | ... |
-
Please register or login to post a comment