Skip to content

Commit

Permalink
Remove debug logs
Browse files Browse the repository at this point in the history
  • Loading branch information
dhaavi committed Jul 16, 2024
1 parent 8d8ce0b commit e55965a
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 2 deletions.
1 change: 0 additions & 1 deletion service/status/module.go
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,6 @@ func (s *Status) Start() error {
s.instance.AddStatusCallback("status update", s.handleModuleStatusUpdate)
// Get initial states.
for _, stateUpdate := range s.instance.GetStatus() {
s.mgr.Info("status update", stateUpdate)
s.states[stateUpdate.Module] = stateUpdate
s.deriveNotificationsFromStateUpdate(stateUpdate)
}
Expand Down
1 change: 0 additions & 1 deletion service/status/status.go
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,6 @@ func (s *Status) handleModuleStatusUpdate(_ *mgr.WorkerCtx, update mgr.StateUpda
s.statesLock.Lock()
defer s.statesLock.Unlock()

s.mgr.Error("received module state update", "state update", update)
s.states[update.Module] = update
s.deriveNotificationsFromStateUpdate(update)
s.triggerPublishStatus()
Expand Down

0 comments on commit e55965a

Please sign in to comment.