diff options
Diffstat (limited to 'ospf6d/ospf6_flood.c')
-rw-r--r-- | ospf6d/ospf6_flood.c | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/ospf6d/ospf6_flood.c b/ospf6d/ospf6_flood.c index 3e86e9cc8..76e81aab7 100644 --- a/ospf6d/ospf6_flood.c +++ b/ospf6d/ospf6_flood.c @@ -381,7 +381,8 @@ void ospf6_flood_interface(struct ospf6_neighbor *from, struct ospf6_lsa *lsa, } else { /* (d) add retrans-list, schedule retransmission */ if (is_debug) - zlog_debug("Add retrans-list of this neighbor"); + zlog_debug("Add retrans-list of neighbor %s ", + on->name); ospf6_increment_retrans_count(lsa); ospf6_lsdb_add(ospf6_lsa_copy(lsa), on->retrans_list); thread_add_timer(master, ospf6_lsupdate_send_neighbor, @@ -395,7 +396,8 @@ void ospf6_flood_interface(struct ospf6_neighbor *from, struct ospf6_lsa *lsa, if (retrans_added == 0) { if (is_debug) zlog_debug( - "No retransmission scheduled, next interface"); + "No retransmission scheduled, next interface %s", + oi->interface->name); return; } |