Skip to content

Commit

Permalink
Merge pull request #2101 from patrickdillon/logrus-fmt-bug
Browse files Browse the repository at this point in the history
Fix string fmt bug in saving credentials message.
  • Loading branch information
openshift-merge-robot committed Jul 26, 2019
2 parents 6d27c4a + f855f0d commit f79dc2f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pkg/asset/installconfig/gcp/session.go
Expand Up @@ -68,7 +68,7 @@ func getCredentials(ctx context.Context) (*googleoauth.Credentials, error) {
}

filePath := defaultAuthFilePath
logrus.Info("Saving the credentials to %q", filePath)
logrus.Infof("Saving the credentials to %q", filePath)
if err := os.MkdirAll(filepath.Dir(filePath), 0700); err != nil {
return nil, err
}
Expand Down

0 comments on commit f79dc2f

Please sign in to comment.