diff options
author | Donald Sharp <sharpd@cumulusnetworks.com> | 2019-11-12 14:02:06 +0100 |
---|---|---|
committer | Donald Sharp <sharpd@cumulusnetworks.com> | 2019-11-12 15:38:04 +0100 |
commit | 23fc858a5e9cd38116b3ddc351168f6e231df6b5 (patch) | |
tree | 0237a36c679e01155585ebcf796bb749f7e67a51 /pimd/pim_join.c | |
parent | pimd: Ignore igmp queries from itself (diff) | |
download | frr-23fc858a5e9cd38116b3ddc351168f6e231df6b5.tar.xz frr-23fc858a5e9cd38116b3ddc351168f6e231df6b5.zip |
pimd: `debug igmp trace` turns on non igmp debugs
When you turn on `debug igmp trace` we are seeing a bunch
of debugs associated with pim processing. This is because we were
using PIM_DEBUG_TRACE which is both `debug igmp trace` and `debug pim trace`
when tracing igmp code it would be nice to only see igmp work.
Signed-off-by: Donald Sharp <sharpd@cumulusnetworks.com>
Diffstat (limited to 'pimd/pim_join.c')
-rw-r--r-- | pimd/pim_join.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pimd/pim_join.c b/pimd/pim_join.c index 686475fef..842d6684b 100644 --- a/pimd/pim_join.c +++ b/pimd/pim_join.c @@ -332,7 +332,7 @@ int pim_joinprune_recv(struct interface *ifp, struct pim_neighbor *neigh, struct pim_upstream *up = sg_ch->upstream; PIM_IF_FLAG_SET_S_G_RPT(sg_ch->flags); if (up) { - if (PIM_DEBUG_TRACE) + if (PIM_DEBUG_PIM_TRACE) zlog_debug( "%s: SGRpt flag is set, del inherit oif from up %s", __PRETTY_FUNCTION__, |