Browse Source

Merge pull request #1427 from yann-soubeyrand/static-client-log-name

cmd/dex/serve.go: log static client name instead of ID
v2.16.x v2.16.0
Eric Chiang 7 years ago committed by GitHub
parent
commit
60f47c4228
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 2
      cmd/dex/serve.go

2
cmd/dex/serve.go

@ -161,7 +161,7 @@ func serve(cmd *cobra.Command, args []string) error {
if len(c.StaticClients) > 0 {
for _, client := range c.StaticClients {
logger.Infof("config static client: %s", client.ID)
logger.Infof("config static client: %s", client.Name)
}
s = storage.WithStaticClients(s, c.StaticClients)
}

Loading…
Cancel
Save