diff --git a/pyroute2/ndb/objects/neighbour.py b/pyroute2/ndb/objects/neighbour.py index f8f55390b..078b80cbe 100644 --- a/pyroute2/ndb/objects/neighbour.py +++ b/pyroute2/ndb/objects/neighbour.py @@ -10,6 +10,7 @@ def load_ndmsg(schema, target, event): + schema.log.info(f"{target}, {event}, {type(target)}, {type(event)}") # # ignore events with ifindex == 0 # @@ -22,12 +23,14 @@ def load_ndmsg(schema, target, event): # AF_BRIDGE events # if event['family'] == AF_BRIDGE: + schema.log.info("HIT AF_BRIDGE") # # bypass for now # try: schema.load_netlink('af_bridge_fdb', target, event, propagate=True) except Exception: + schema.log.info("RESCHEDULING") raise RescheduleException() else: