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 13, 2024
1 parent 59187aa commit 786561c
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 786561c

Please sign in to comment.