Skip to content

Commit

Permalink
feat(act): add logs
Browse files Browse the repository at this point in the history
  • Loading branch information
Ferenc Sárai committed Jul 26, 2024
1 parent d20e1b1 commit 8ab3988
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion pkg/check/act/act.go
Original file line number Diff line number Diff line change
Expand Up @@ -166,7 +166,7 @@ func (c *Check) Run(ctx context.Context, cluster orchestration.Cluster, opts int
return fmt.Errorf("node %s: PatchActGrantees: %w", upNodeName, pErr)
}

c.logger.Infof("ACT grantees patched %+v", pFile)
c.logger.Info("ACT grantees patched")

// list grantees after patch
patchAddresses, patchErr := upClient.GetActGrantees(ctx, pFile.Address())
Expand All @@ -179,6 +179,7 @@ func (c *Check) Run(ctx context.Context, cluster orchestration.Cluster, opts int
if len(patchAddresses) != 1 {
return fmt.Errorf("node %s: GetActGrantees after patch: addresses length is not 1", upNodeName)
}
c.logger.Info("ACT grantees listed after patch")

history3 := pFile.HistroryAddress()
gPublisher, _ := swarm.ParseHexAddress("02ceff1422a7026ba54ad89967d81f2805a55eb3d05f64eb5c49ea6024212b12e8")
Expand Down

0 comments on commit 8ab3988

Please sign in to comment.