fix wrong log level
Change-Id: Icd129e22e4acb41c5fd3d4829d9541bd6bdfcf80
Showing
1 changed file
with
1 additions
and
1 deletions
... | @@ -207,7 +207,7 @@ public class OpenFlowControllerImpl implements OpenFlowController { | ... | @@ -207,7 +207,7 @@ public class OpenFlowControllerImpl implements OpenFlowController { |
207 | + "value for dpid: {}", dpid); | 207 | + "value for dpid: {}", dpid); |
208 | return false; | 208 | return false; |
209 | } else { | 209 | } else { |
210 | - log.error("Added switch {}", dpid); | 210 | + log.info("Added switch {}", dpid); |
211 | connectedSwitches.put(dpid, sw); | 211 | connectedSwitches.put(dpid, sw); |
212 | for (OpenFlowSwitchListener l : ofSwitchListener) { | 212 | for (OpenFlowSwitchListener l : ofSwitchListener) { |
213 | l.switchAdded(dpid); | 213 | l.switchAdded(dpid); | ... | ... |
-
Please register or login to post a comment