Skip to content

Commit

Permalink
syncservice: log error message (ethereum#236)
Browse files Browse the repository at this point in the history
  • Loading branch information
tynes authored Mar 1, 2021
1 parent 573ba36 commit ab5e36c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion rollup/sync_service.go
Original file line number Diff line number Diff line change
Expand Up @@ -361,7 +361,7 @@ func (s *SyncService) SequencerLoop() {
for i := start; i <= end; i++ {
enqueue, err := s.client.GetEnqueue(i)
if err != nil {
log.Error("Cannot get enqueue in loop", "index", i)
log.Error("Cannot get enqueue in loop", "index", i, "message", err)
continue
}

Expand Down

0 comments on commit ab5e36c

Please sign in to comment.