Skip to content

Commit 94918f2

Browse files
authored
Merge pull request dexidp#1427 from yann-soubeyrand/static-client-log-name
cmd/dex/serve.go: log static client name instead of ID
2 parents 87e4c32 + 5a6429c commit 94918f2

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

cmd/dex/serve.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -161,7 +161,7 @@ func serve(cmd *cobra.Command, args []string) error {
161161

162162
if len(c.StaticClients) > 0 {
163163
for _, client := range c.StaticClients {
164-
logger.Infof("config static client: %s", client.ID)
164+
logger.Infof("config static client: %s", client.Name)
165165
}
166166
s = storage.WithStaticClients(s, c.StaticClients)
167167
}

0 commit comments

Comments
 (0)