-
Notifications
You must be signed in to change notification settings - Fork 669
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Excessive Unwanted Warning Logs #2999
Comments
when i downgrade to 1.27.0 the issue goes away. I also tried this to override logging options and that didn't work either.
Maybe something like a |
ok i found this that seems relevant #2976 so I guess I just need to go into my code where i fetch things from S3 and add func(o *s3.Options) {
o.DisableLogOutputChecksumValidationSkipped = true
} |
That's correct - you can disable these. |
This issue is now closed. Comments on closed issues are hard for our team to see. |
Acknowledgements
go get -u github.com/aws/aws-sdk-go-v2/...
)Describe the bug
I'm running these versions of the various libraries and every time i make a call to S3 i get tons of these unstructured log messages that most emphatically do not want in my stdout / stderr
The documentation explicitly says
By default, service clients do not produce log messages.
but this seems to not be true.How can I turn this off?
Regression Issue
Expected Behavior
I expect the library not to log anything by default
Current Behavior
this keeps getting piped out to my stdout/stderr
Reproduction Steps
any calls to S3 to ListObjects, ListObjectVersions, PutObject etc
Possible Solution
No response
Additional Information/Context
No response
AWS Go SDK V2 Module Versions Used
Compiler and Version used
% go version go version go1.23.4 darwin/arm64
Operating System and version
MacOS 15.2
The text was updated successfully, but these errors were encountered: