Skip to content

Commit

Permalink
fix(dbushelpers): remove not useful debug log messages
Browse files Browse the repository at this point in the history
  • Loading branch information
joshuar committed Dec 2, 2023
1 parent fd14a16 commit a78118c
Showing 1 changed file with 0 additions and 10 deletions.
10 changes: 0 additions & 10 deletions pkg/dbushelpers/dbus.go
Original file line number Diff line number Diff line change
Expand Up @@ -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()
Expand Down

0 comments on commit a78118c

Please sign in to comment.