summaryrefslogtreecommitdiffstats
path: root/ospfd/ospf_zebra.c
diff options
context:
space:
mode:
authorMark Stapp <mjs@voltanet.io>2019-07-24 21:57:34 +0200
committerMark Stapp <mjs@voltanet.io>2019-08-14 19:45:14 +0200
commitae4080c5a2974758b3b8eeea5d74cf5d4b823c05 (patch)
treee3744f6f71c8b96c760d8667f310423cc58b5926 /ospfd/ospf_zebra.c
parentMerge pull request #4706 from qlyoung/fix-exit-vrf-markfile (diff)
downloadfrr-ae4080c5a2974758b3b8eeea5d74cf5d4b823c05.tar.xz
frr-ae4080c5a2974758b3b8eeea5d74cf5d4b823c05.zip
ospfd: add redist message detail to debug
Add the specific message being processed when ospfd receives a redistribution from zebra. Signed-off-by: Mark Stapp <mjs@voltanet.io>
Diffstat (limited to 'ospfd/ospf_zebra.c')
-rw-r--r--ospfd/ospf_zebra.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/ospfd/ospf_zebra.c b/ospfd/ospf_zebra.c
index 47438b985..b478832d8 100644
--- a/ospfd/ospf_zebra.c
+++ b/ospfd/ospf_zebra.c
@@ -983,7 +983,8 @@ static int ospf_zebra_read_route(ZAPI_CALLBACK_ARGS)
char buf_prefix[PREFIX_STRLEN];
prefix2str(&api.prefix, buf_prefix, sizeof(buf_prefix));
- zlog_debug("%s: from client %s: vrf_id %d, p %s", __func__,
+ zlog_debug("%s: cmd %s from client %s: vrf_id %d, p %s",
+ __func__, zserv_command_string(cmd),
zebra_route_string(api.type), vrf_id, buf_prefix);
}