Skip to content
This repository has been archived by the owner on Apr 15, 2024. It is now read-only.

Commit

Permalink
chore: make the already signed log debug level (#609)
Browse files Browse the repository at this point in the history
  • Loading branch information
rach-id authored Nov 21, 2023
1 parent 1108ada commit 8fa8dd3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions orchestrator/orchestrator.go
Original file line number Diff line number Diff line change
Expand Up @@ -302,7 +302,7 @@ func (orch Orchestrator) Process(ctx context.Context, nonce uint64) error {
return errors.Wrap(err, fmt.Sprintf("valset %d", nonce))
}
if resp != nil {
orch.Logger.Info("already signed valset", "nonce", nonce, "signature", resp.Signature)
orch.Logger.Debug("already signed valset", "nonce", nonce, "signature", resp.Signature)
return nil
}
err = orch.ProcessValsetEvent(ctx, *castedAtt)
Expand Down Expand Up @@ -331,7 +331,7 @@ func (orch Orchestrator) Process(ctx context.Context, nonce uint64) error {
return errors.Wrap(err, fmt.Sprintf("data commitment %d", nonce))
}
if resp != nil {
orch.Logger.Info("already signed data commitment", "nonce", nonce, "begin_block", castedAtt.BeginBlock, "end_block", castedAtt.EndBlock, "data_root_tuple_root", dataRootHash.Hex(), "signature", resp.Signature)
orch.Logger.Debug("already signed data commitment", "nonce", nonce, "begin_block", castedAtt.BeginBlock, "end_block", castedAtt.EndBlock, "data_root_tuple_root", dataRootHash.Hex(), "signature", resp.Signature)
return nil
}
err = orch.ProcessDataCommitmentEvent(ctx, *castedAtt, dataRootHash)
Expand Down

0 comments on commit 8fa8dd3

Please sign in to comment.