added missing log parameter
Change-Id: I6959a1b6eb3e051161d6e86ce94116a55b38c065
Showing
1 changed file
with
2 additions
and
2 deletions
| ... | @@ -981,13 +981,13 @@ class OFChannelHandler extends IdleStateAwareChannelHandler { | ... | @@ -981,13 +981,13 @@ class OFChannelHandler extends IdleStateAwareChannelHandler { |
| 981 | // switch was a duplicate-dpid, calling the method below would clear | 981 | // switch was a duplicate-dpid, calling the method below would clear |
| 982 | // all state for the original switch (with the same dpid), | 982 | // all state for the original switch (with the same dpid), |
| 983 | // which we obviously don't want. | 983 | // which we obviously don't want. |
| 984 | - log.info("{}:removal called"); | 984 | + log.info("{}:removal called", getSwitchInfoString()); |
| 985 | sw.removeConnectedSwitch(); | 985 | sw.removeConnectedSwitch(); |
| 986 | } else { | 986 | } else { |
| 987 | // A duplicate was disconnected on this ChannelHandler, | 987 | // A duplicate was disconnected on this ChannelHandler, |
| 988 | // this is the same switch reconnecting, but the original state was | 988 | // this is the same switch reconnecting, but the original state was |
| 989 | // not cleaned up - XXX check liveness of original ChannelHandler | 989 | // not cleaned up - XXX check liveness of original ChannelHandler |
| 990 | - log.info("{}:duplicate found"); | 990 | + log.info("{}:duplicate found", getSwitchInfoString()); |
| 991 | duplicateDpidFound = Boolean.FALSE; | 991 | duplicateDpidFound = Boolean.FALSE; |
| 992 | } | 992 | } |
| 993 | } else { | 993 | } else { | ... | ... |
-
Please register or login to post a comment