Skip to content

Commit

Permalink
fix: typos in logs
Browse files Browse the repository at this point in the history
  • Loading branch information
Stefan-Ethernal committed Feb 19, 2025
1 parent 30fe247 commit b50b417
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions aggsender/aggsender.go
Original file line number Diff line number Diff line change
Expand Up @@ -302,7 +302,7 @@ func (a *AggSender) sendCertificate(ctx context.Context) (*agglayer.SignedCertif
}

a.saveCertificateToFile(signedCertificate)
a.log.Infof("certificate ready to be send to AggLayer: %s", signedCertificate.Brief())
a.log.Infof("certificate ready to be sent to AggLayer: %s", signedCertificate.Brief())
if a.cfg.DryRun {
a.log.Warn("dry run mode enabled, skipping sending certificate")
return signedCertificate, nil
Expand All @@ -312,7 +312,7 @@ func (a *AggSender) sendCertificate(ctx context.Context) (*agglayer.SignedCertif
return nil, fmt.Errorf("error sending certificate: %w", err)
}

a.log.Debugf("certificate send: Height: %d cert: %s", signedCertificate.Height, signedCertificate.Brief())
a.log.Debugf("certificate sent: Height: %d cert: %s", signedCertificate.Height, signedCertificate.Brief())

raw, err := json.Marshal(signedCertificate)
if err != nil {
Expand Down

0 comments on commit b50b417

Please sign in to comment.