From 01a2a4a3cc45c0735625c3e1653cb1f54ab61850 Mon Sep 17 00:00:00 2001 From: ahrav Date: Thu, 24 Oct 2024 09:40:23 -0700 Subject: [PATCH] remove debug log (#3505) --- pkg/sources/s3/s3.go | 1 - 1 file changed, 1 deletion(-) diff --git a/pkg/sources/s3/s3.go b/pkg/sources/s3/s3.go index f5df0fd3a0d1..8c3aabca85b3 100644 --- a/pkg/sources/s3/s3.go +++ b/pkg/sources/s3/s3.go @@ -131,7 +131,6 @@ func (s *Source) setMaxObjectSize(maxObjectSize int64) { func (s *Source) newClient(region, roleArn string) (*s3.S3, error) { cfg := aws.NewConfig() cfg.CredentialsChainVerboseErrors = aws.Bool(true) - cfg.LogLevel = aws.LogLevel(aws.LogDebugWithRequestErrors) cfg.Region = aws.String(region) switch cred := s.conn.GetCredential().(type) {