Merge pull request #14084 from hakman/hide_log_non-aws_s3_endpoint

Set higher verbosity when logging the endpoint of non-AWS S3 backend
This commit is contained in:
Kubernetes Prow Robot 2022-08-02 19:37:52 -07:00 committed by GitHub
commit fee7348577
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -87,7 +87,7 @@ func (s *S3Context) getClient(region string) (*s3.S3, error) {
config = config.WithCredentialsChainVerboseErrors(true)
} else {
// Use customized S3 storage
klog.Infof("Found S3_ENDPOINT=%q, using as non-AWS S3 backend", endpoint)
klog.V(2).Infof("Found S3_ENDPOINT=%q, using as non-AWS S3 backend", endpoint)
config, err = getCustomS3Config(endpoint, region)
if err != nil {
return nil, err