From c44bd447cd82695b3ba68437641bdb233c7397ef Mon Sep 17 00:00:00 2001 From: "G. Paul Ziemba" Date: Sat, 3 Mar 2018 13:22:29 -0800 Subject: [PATCH] isisd: debug msg: display distance when adding redist route Signed-off-by: G. Paul Ziemba --- isisd/isis_redist.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/isisd/isis_redist.c b/isisd/isis_redist.c index 198cf35e68..48fcf449c7 100644 --- a/isisd/isis_redist.c +++ b/isisd/isis_redist.c @@ -254,8 +254,8 @@ void isis_redist_add(int type, struct prefix *p, u_char distance, char debug_buf[BUFSIZ]; prefix2str(p, debug_buf, sizeof(debug_buf)); - zlog_debug("%s: New route %s from %s.", __func__, debug_buf, - zebra_route_string(type)); + zlog_debug("%s: New route %s from %s: distance %d.", __func__, + debug_buf, zebra_route_string(type), distance); if (!ei_table) { zlog_warn("%s: External information table not initialized.", -- 2.39.5