Skip to content

Commit

Permalink
Clean up loggin a tiny bit
Browse files Browse the repository at this point in the history
  • Loading branch information
samsondav committed Nov 19, 2024
1 parent 842df78 commit b34a6a8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion core/services/llo/mercurytransmitter/server.go
Original file line number Diff line number Diff line change
Expand Up @@ -195,7 +195,7 @@ func (s *server) runQueueLoop(stopCh services.StopChan, wg *sync.WaitGroup, donI
return
} else if err != nil {
s.transmitConnectionErrorCount.Inc()
s.lggr.Errorw("Transmit report failed", "err", err, "req", req, "transmission", t)
s.lggr.Errorw("Transmit report failed", "err", err, "req.Payload", req.Payload, "req.ReportFormat", req.ReportFormat, "transmission", t)
if ok := s.q.Push(t); !ok {
s.lggr.Error("Failed to push report to transmit queue; queue is closed")
return
Expand Down

0 comments on commit b34a6a8

Please sign in to comment.