Skip to content

Commit

Permalink
FET-118 Print audienceTrustMap on startup
Browse files Browse the repository at this point in the history
  • Loading branch information
loafoe committed Feb 19, 2024
1 parent 576bc31 commit 475b936
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions connector/hsdp/hsdp.go
Original file line number Diff line number Diff line change
Expand Up @@ -131,6 +131,10 @@ func (c *Config) Open(id string, logger log.Logger) (conn connector.Connector, e
return nil, fmt.Errorf("error creating HSP IAM client: %w", err)
}

for a, t := range c.AudienceTrustMap {
logger.Info("audienceTrustMap: ", a, " -> ", t)
}

clientID := c.ClientID
return &HSDPConnector{
provider: provider,
Expand Down

0 comments on commit 475b936

Please sign in to comment.