Skip to content

Commit

Permalink
clean up some logging (#9675)
Browse files Browse the repository at this point in the history
  • Loading branch information
samsondav committed Jun 23, 2023
1 parent dd9bf78 commit f26f615
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion core/chains/evm/logpoller/log_poller.go
Original file line number Diff line number Diff line change
Expand Up @@ -120,7 +120,7 @@ func NewLogPoller(orm *ORM, ec Client, lggr logger.Logger, pollPeriod time.Durat
return &logPoller{
ec: ec,
orm: orm,
lggr: lggr,
lggr: lggr.Named("LogPoller"),
replayStart: make(chan int64),
replayComplete: make(chan error),
pollPeriod: pollPeriod,
Expand Down
2 changes: 1 addition & 1 deletion core/services/relay/evm/mercury/transmitter.go
Original file line number Diff line number Diff line change
Expand Up @@ -271,7 +271,7 @@ func (mt *mercuryTransmitter) Transmit(ctx context.Context, reportCtx ocrtypes.R
Payload: payload,
}

mt.lggr.Debugw("Transmit enqueue", "req", req, "report", report, "reportCtx", reportCtx, "signatures", signatures)
mt.lggr.Tracew("Transmit enqueue", "req", req, "report", report, "reportCtx", reportCtx, "signatures", signatures)

if ok := mt.queue.Push(req, reportCtx); !ok {
return errors.New("transmit queue is closed")
Expand Down

0 comments on commit f26f615

Please sign in to comment.