BREAKING: Logging of canonical requests is now configured by LogMode.LogRequest
#1087
lauzadis
announced in
Announcements
Replies: 0 comments
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
An upcoming release of the AWS SDK for Kotlin changes the conditions required for logging the canonical request during signing.
If you do not rely on the signer logging canonical requests, this change should not affect you.
Release date
This feature will ship with the v0.33.0-beta release planned for 10/26/2023.
What’s changing
The signer will no longer log the canonical request by default. Instead, logging will be controlled by the
LogMode.LogRequest
configured on the SDK service client.If the
LogMode
does not includeLogRequest
, the canonical request will not be logged.How to Migrate
If you rely on the canonical request being logged, configure your client to enable
LogMode.LogRequest
.See the developer guide for a detailed explanation of how to configure this property.
Feedback
If you have any questions concerning this change, please feel free to engage with us in this discussion. If you encounter a bug with these changes, please file an issue.
Beta Was this translation helpful? Give feedback.
All reactions