diff options
| author | G. Paul Ziemba <paulz@labn.net> | 2018-03-03 13:22:29 -0800 |
|---|---|---|
| committer | Lou Berger <lberger@labn.net> | 2018-03-09 16:42:40 -0500 |
| commit | c44bd447cd82695b3ba68437641bdb233c7397ef (patch) | |
| tree | 0c20d26a23e83b1d8bd555b8ab37864ae151838a | |
| parent | 3d9f730216e49e10f44cbb7f2237e22bd8368834 (diff) | |
isisd: debug msg: display distance when adding redist route
Signed-off-by: G. Paul Ziemba <paulz@labn.net>
| -rw-r--r-- | isisd/isis_redist.c | 4 |
1 files 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.", |
