Merge pull request #98095 from qingsenLi/210115-fix

fix klog.Info -> klog.Infof
This commit is contained in:
Kubernetes Prow Robot
2021-01-17 01:15:43 -08:00
committed by GitHub

View File

@@ -257,7 +257,7 @@ func (a *acrProvider) Provide(image string) credentialprovider.DockerConfig {
if exists {
klog.V(4).Infof("Got ACR credentials from cache for %s", loginServer)
} else {
klog.V(2).Info("unable to get ACR credentials from cache for %s, checking ACR API", loginServer)
klog.V(2).Infof("unable to get ACR credentials from cache for %s, checking ACR API", loginServer)
var err error
cfg, err = a.getFromACR(loginServer)
if err != nil {