Skip to content

Commit

Permalink
Receiver log
Browse files Browse the repository at this point in the history
  • Loading branch information
aopoltorzhicky committed Jun 12, 2024
1 parent dc8ccaf commit f21838c
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions pkg/indexer/receiver/receiver.go
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,7 @@ func (r *Receiver) worker(ctx context.Context, height uint64) {
if errors.Is(err, context.Canceled) {
return
}
r.log.Err(err).Msg("get block request")
r.log.Err(err).Uint64("height", height).Msg("get block request")
time.Sleep(time.Second)
continue
}
Expand Down Expand Up @@ -143,7 +143,7 @@ func (r *Receiver) worker(ctx context.Context, height uint64) {
if errors.Is(err, context.Canceled) {
return
}
r.log.Err(err).Msg("get block traces request")
r.log.Err(err).Uint64("height", height).Msg("get block traces request")
time.Sleep(time.Second)
continue
}
Expand Down Expand Up @@ -173,7 +173,7 @@ func (r *Receiver) worker(ctx context.Context, height uint64) {
if errors.Is(err, context.Canceled) {
return
}
r.log.Err(err).Msg("state update request")
r.log.Err(err).Uint64("height", height).Msg("state update request")
time.Sleep(time.Second)
continue
}
Expand Down

0 comments on commit f21838c

Please sign in to comment.