Skip to content

Commit

Permalink
Merge pull request #2679 from OffchainLabs/gligneul/fix-warn
Browse files Browse the repository at this point in the history
Fix warn message formatting
  • Loading branch information
PlasmaPower authored Sep 16, 2024
2 parents 4483e77 + 9b8a8f6 commit caf7a0b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion arbnode/seq_coordinator.go
Original file line number Diff line number Diff line change
Expand Up @@ -491,7 +491,7 @@ func (c *SeqCoordinator) updateWithLockout(ctx context.Context, nextChosen strin
// Before proceeding, first try deleting finalized messages from redis and setting the finalizedMsgCount key
finalized, err := c.sync.GetFinalizedMsgCount(ctx)
if err != nil {
log.Warn("Error getting finalizedMessageCount from syncMonitor: %w", err)
log.Warn("Error getting finalizedMessageCount from syncMonitor", "err", err)
} else if finalized == 0 {
log.Warn("SyncMonitor returned zero finalizedMessageCount")
} else if err := c.deleteFinalizedMsgsFromRedis(ctx, finalized); err != nil {
Expand Down

0 comments on commit caf7a0b

Please sign in to comment.