Skip to content
This repository has been archived by the owner on Dec 12, 2024. It is now read-only.

Commit

Permalink
fix spec
Browse files Browse the repository at this point in the history
  • Loading branch information
nitro-neal committed Jun 6, 2023
1 parent c6b0650 commit 1cb6cdc
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions pkg/service/credential/storage.go
Original file line number Diff line number Diff line change
Expand Up @@ -416,7 +416,7 @@ func (cs *Storage) GetCredentialsByIssuer(ctx context.Context, issuer string) ([
}

if len(storedCreds) == 0 {
logrus.Info("no credentials able to be retrieved for issuer: %s", issuerKeys)
logrus.Infof("no credentials able to be retrieved for issuer: %s", issuerKeys)
}

return storedCreds, nil
Expand Down Expand Up @@ -459,7 +459,7 @@ func (cs *Storage) GetCredentialsBySubject(ctx context.Context, subject string)
}

if len(storedCreds) == 0 {
logrus.Info("no credentials able to be retrieved for subject: %s", subjectKeys)
logrus.Infof("no credentials able to be retrieved for subject: %s", subjectKeys)
}

return storedCreds, nil
Expand Down Expand Up @@ -503,7 +503,7 @@ func (cs *Storage) GetCredentialsBySchema(ctx context.Context, schema string) ([
}

if len(storedCreds) == 0 {
logrus.Info("no credentials able to be retrieved for schema: %s", schemaKeys)
logrus.Infof("no credentials able to be retrieved for schema: %s", schemaKeys)
}

return storedCreds, nil
Expand Down

0 comments on commit 1cb6cdc

Please sign in to comment.