Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add agg logs #219

Merged
merged 1 commit into from
Jun 13, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 4 additions & 2 deletions aggregator/aggregator.go
Original file line number Diff line number Diff line change
Expand Up @@ -369,7 +369,7 @@ func (a *Aggregator) tryBuildFinalProof(ctx context.Context, prover proverInterf
log.Debug("Time to verify proof not reached or proof verification in progress")
return false, nil
}
log.Debug("Send final proof time reached")
log.Info("Send final proof time reached")

for !a.isSynced(ctx, nil) {
log.Info("Waiting for synchronizer to sync...")
Expand Down Expand Up @@ -468,7 +468,7 @@ func (a *Aggregator) validateEligibleFinalProof(ctx context.Context, proof *stat
}
return false, nil
} else {
log.Debugf("Proof batch number %d is not the following to last verfied batch number %d", proof.BatchNumber, lastVerifiedBatchNum)
log.Infof("Proof batch number %d is not the following to last verfied batch number %d", proof.BatchNumber, lastVerifiedBatchNum)
return false, nil
}
}
Expand Down Expand Up @@ -710,6 +710,8 @@ func (a *Aggregator) tryAggregateProofs(ctx context.Context, prover proverInterf
return false, err
}

log.Info("Aggregated proof generated updated database")

// NOTE(pg): the defer func is useless from now on, use a different variable
// name for errors (or shadow err in inner scopes) to not trigger it.

Expand Down
Loading