summaryrefslogtreecommitdiffstats
path: root/pimd/pim_igmpv3.c
diff options
context:
space:
mode:
authorDonald Sharp <sharpd@cumulusnetworks.com>2019-11-12 15:15:57 +0100
committerDonald Sharp <sharpd@cumulusnetworks.com>2019-11-12 15:38:04 +0100
commitc7e663d68a795424ab12d9928b042fe96cd0d040 (patch)
tree1b3a05d24ccec2cfed032c88d1b781927f11a3c6 /pimd/pim_igmpv3.c
parentpimd: `debug igmp trace` turns on non igmp debugs (diff)
downloadfrr-c7e663d68a795424ab12d9928b042fe96cd0d040.tar.xz
frr-c7e663d68a795424ab12d9928b042fe96cd0d040.zip
pimd: Cleanup igmp debugs a tiny bit
When receiving igmp packets we are spitting out a lot of debugs. Attempt to clean this up to allow us to understand what is going on a bit better by just being able to look at the log file. Signed-off-by: Donald Sharp <sharpd@cumulusnetworks.com>
Diffstat (limited to 'pimd/pim_igmpv3.c')
-rw-r--r--pimd/pim_igmpv3.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/pimd/pim_igmpv3.c b/pimd/pim_igmpv3.c
index d9b940bba..2d58340c8 100644
--- a/pimd/pim_igmpv3.c
+++ b/pimd/pim_igmpv3.c
@@ -1927,7 +1927,7 @@ int igmp_v3_recv_report(struct igmp_sock *igmp, struct in_addr from,
if (PIM_DEBUG_IGMP_PACKETS) {
zlog_debug(
- "Recv IGMP report v3 from %s on %s: record=%d type=%d auxdatalen=%d sources=%d group=%s",
+ " Recv IGMP report v3 from %s on %s: record=%d type=%d auxdatalen=%d sources=%d group=%s",
from_str, ifp->name, i, rec_type,
rec_auxdatalen, rec_num_sources,
inet_ntoa(rec_group));
@@ -1954,7 +1954,7 @@ int igmp_v3_recv_report(struct igmp_sock *igmp, struct in_addr from,
sprintf(src_str, "<source?>");
zlog_debug(
- "Recv IGMP report v3 from %s on %s: record=%d group=%s source=%s",
+ " Recv IGMP report v3 from %s on %s: record=%d group=%s source=%s",
from_str, ifp->name, i,
inet_ntoa(rec_group), src_str);
}