diff options
-rw-r--r-- | ryu/services/protocols/bgp/application.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ryu/services/protocols/bgp/application.py b/ryu/services/protocols/bgp/application.py index e6e224a3..b09253b1 100644 --- a/ryu/services/protocols/bgp/application.py +++ b/ryu/services/protocols/bgp/application.py @@ -176,7 +176,7 @@ class BaseApplication(object): try: bgp_neighbor[neighbors.IP_ADDRESS] = ip call('neighbor.create', **bgp_neighbor) - LOG.debug('Added neighbor %s' % neighbors.IP_ADDRESS) + LOG.debug('Added neighbor %s' % ip) except RuntimeConfigError as re: LOG.error(re) LOG.error(traceback.format_exc()) |