Skip to content

Commit

Permalink
Merge pull request #5726 from davidarcher/patch-1
Browse files Browse the repository at this point in the history
Use appropriate log level for KOPS_STATE_S3_ACL debug message
  • Loading branch information
k8s-ci-robot committed Sep 5, 2018
2 parents c1c1a6c + 83db56f commit 66b9e0e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion util/pkg/vfs/s3fs.go
Original file line number Diff line number Diff line change
Expand Up @@ -150,7 +150,7 @@ func (p *S3Path) WriteFile(data io.ReadSeeker, aclObj ACL) error {
acl := os.Getenv("KOPS_STATE_S3_ACL")
acl = strings.TrimSpace(acl)
if acl != "" {
glog.Infof("Using KOPS_STATE_S3_ACL=%s", acl)
glog.V(8).Infof("Using KOPS_STATE_S3_ACL=%s", acl)
request.ACL = aws.String(acl)
} else if aclObj != nil {
s3Acl, ok := aclObj.(*S3Acl)
Expand Down

0 comments on commit 66b9e0e

Please sign in to comment.