From 0c7cf65d27fe734bda4d9bc334e95c8a9fea2e13 Mon Sep 17 00:00:00 2001 From: Neil Alexander Date: Sat, 2 May 2020 22:33:25 +0100 Subject: [PATCH] Move some logging back to debug --- src/multicast/multicast.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/multicast/multicast.go b/src/multicast/multicast.go index 6ceef0a..d944b7f 100644 --- a/src/multicast/multicast.go +++ b/src/multicast/multicast.go @@ -211,7 +211,7 @@ func (m *Multicast) monitorInterfaceChanges() { } multicastInterface.Act(multicastInterface, multicastInterface.announce) m.listeners[name] = multicastInterface - m.log.Infoln("Started multicasting on", name) + m.log.Debugln("Started multicasting on", name) break } } @@ -222,7 +222,7 @@ func (m *Multicast) monitorInterfaceChanges() { // This is a disappeared interface. Stop the announcer. close(intf.stop) delete(m.listeners, name) - m.log.Infoln("Stopped multicasting on", name) + m.log.Debugln("Stopped multicasting on", name) } } // Queue the next check.