From a78118cb20b2751fc3481e3b7e69f8faea70a751 Mon Sep 17 00:00:00 2001 From: Joshua Rich Date: Sat, 2 Dec 2023 15:18:21 +1000 Subject: [PATCH] fix(dbushelpers): remove not useful debug log messages --- pkg/dbushelpers/dbus.go | 10 ---------- 1 file changed, 10 deletions(-) diff --git a/pkg/dbushelpers/dbus.go b/pkg/dbushelpers/dbus.go index 47b105d1a..0afa3a7b4 100644 --- a/pkg/dbushelpers/dbus.go +++ b/pkg/dbushelpers/dbus.go @@ -202,22 +202,12 @@ func (r *busRequest) AddWatch(ctx context.Context) error { case <-ctx.Done(): r.bus.conn.RemoveSignal(signalCh) close(signalCh) - log.Debug(). - Str("path", string(r.path)). - Str("dest", r.dest). - Str("event", r.event). - Msgf("Stopped D-Bus watch.") return case signal := <-signalCh: r.eventHandler(signal) } } }() - log.Debug(). - Str("path", string(r.path)). - Str("dest", r.dest). - Str("event", r.event). - Msgf("Added D-Bus watch.") go func() { wg.Wait() r.bus.wg.Done()