diff options
Diffstat (limited to 'mpm/python/usrp_mpm/ethtable.py')
-rw-r--r-- | mpm/python/usrp_mpm/ethtable.py | 10 |
1 files changed, 7 insertions, 3 deletions
diff --git a/mpm/python/usrp_mpm/ethtable.py b/mpm/python/usrp_mpm/ethtable.py index e97b05856..78f2e60a8 100644 --- a/mpm/python/usrp_mpm/ethtable.py +++ b/mpm/python/usrp_mpm/ethtable.py @@ -87,15 +87,19 @@ class EthDispatcherTable(object): self.log.error( "Could not resolve a MAC address for IP address `{}'".format(ip_addr) ) + dst_ep = sid.dst_ep self.log.debug( - "Routing SID `{sid}' to IP address `{ip}', " \ + "Routing SID `{sid}' (endpoint `{ep}') to IP address `{ip}', " \ "MAC address `{mac}', port `{port}'".format( - sid=str(sid), ip=ip_addr, mac=mac_addr, port=udp_port + sid=str(sid), + ep=dst_ep, + ip=ip_addr, + mac=mac_addr, + port=udp_port ) ) ip_addr_int = int(netaddr.IPAddress(ip_addr)) mac_addr_int = int(netaddr.EUI(mac_addr)) - dst_ep = sid.dst_ep sid_offset = 4 * dst_ep def poke_and_trace(addr, data): " Do a poke32() and log.trace() " |