diff --git a/orchestrator/orchestrator.go b/orchestrator/orchestrator.go index fa3dd26c..02ac174d 100644 --- a/orchestrator/orchestrator.go +++ b/orchestrator/orchestrator.go @@ -280,7 +280,7 @@ func (orch Orchestrator) Process(ctx context.Context, nonce uint64) error { orch.Logger.Debug("failed to query last valset before nonce (most likely pruned). signing anyway", "err", err.Error()) } else if !ValidatorPartOfValset(previousValset.Members, orch.EvmAccount.Address.Hex()) { // no need to sign if the orchestrator is not part of the validator set that needs to sign the attestation - orch.Logger.Debug("validator not part of valset. won't sign", "nonce", nonce) + orch.Logger.Info("validator not part of valset. won't sign", "nonce", nonce) return nil }