Set higher verbosity when logging the endpoint of non-AWS S3 backend

This commit is contained in:
Ciprian Hacman 2022-08-03 04:54:47 +03:00
parent 1c32ac743b
commit 3d24d76cd6
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