Skip to content

Commit

Permalink
feat(act): log out grantees addresses
Browse files Browse the repository at this point in the history
  • Loading branch information
Ferenc Sárai committed Jul 26, 2024
1 parent e736509 commit 3312461
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion pkg/check/act/act.go
Original file line number Diff line number Diff line change
Expand Up @@ -148,6 +148,8 @@ func (c *Check) Run(ctx context.Context, cluster orchestration.Cluster, opts int
return fmt.Errorf("node %s: GetActGrantees: addresses length is not 3", upNodeName)
}

c.logger.Infof("ACT grantees listed: %+v", addresses)

c.logger.Info("ACT grantees listed")

// download act file with added grantees
Expand All @@ -163,7 +165,7 @@ func (c *Check) Run(ctx context.Context, cluster orchestration.Cluster, opts int
}
for _, str := range grantees {
gPublisher, _ := swarm.ParseHexAddress(str)
history := gFile.HistroryAddress()
history := file2.HistroryAddress()
c.logger.Infof("Downloading file with address %s", file2.Address().String())
c.logger.Infof("Downloading file with grantee %s", str)
c.logger.Infof("Downloading file with history address %s", history.String())
Expand Down

0 comments on commit 3312461

Please sign in to comment.