Skip to content

Commit

Permalink
reduced logs
Browse files Browse the repository at this point in the history
  • Loading branch information
mattstam committed Feb 14, 2024
1 parent 9b95ee9 commit 2586e49
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
2 changes: 1 addition & 1 deletion plonky2x/verifier/system/groth16.go
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ func (s *Groth16System) Prove() error {
s.circuitPath = trimmed
}

s.logger.Info().Msgf("generating proof with circuit path %v and proving key %v", s.circuitPath, pk)
s.logger.Info().Msgf("generating proof with circuit path %v", s.circuitPath)
_, _, err = s.ProveCircuit(r1cs, pk)
if err != nil {
return errors.Wrap(err, "create proof")
Expand Down
1 change: 1 addition & 0 deletions plonky2x/verifier/system/plonk.go
Original file line number Diff line number Diff line change
Expand Up @@ -83,6 +83,7 @@ func (s *PlonkSystem) Prove() error {
s.circuitPath = trimmed
}

s.logger.Info().Msgf("generating proof with circuit path %v", s.circuitPath)
_, _, err = s.ProveCircuit(r1cs, pk)
if err != nil {
return errors.Wrap(err, "create proof")
Expand Down

0 comments on commit 2586e49

Please sign in to comment.