From 07adb15ccb2a2f5ef49ec743a52ecaca56433ed9 Mon Sep 17 00:00:00 2001 From: Anastasia Alexadrova Date: Tue, 28 Jan 2025 17:26:17 +0100 Subject: [PATCH] PBM-1474 Updated the description of DebugLogLevel param modified: docs/reference/configuration-options.md --- docs/reference/configuration-options.md | 16 ++++++++++++++-- 1 file changed, 14 insertions(+), 2 deletions(-) diff --git a/docs/reference/configuration-options.md b/docs/reference/configuration-options.md index 0cbc40e2..cab53082 100644 --- a/docs/reference/configuration-options.md +++ b/docs/reference/configuration-options.md @@ -158,9 +158,21 @@ The [storage class](https://aws.amazon.com/s3/storage-classes/) assigned to obje Enables S3 debug logging for different types of S3 requests. S3 log messages are printed in the `pbm logs` output. -Supported values are: `LogDebug`, `Signing`, `HTTPBody`, `RequestRetries`, `RequestErrors`, `EventStreamBody`. +Starting with version 2.9.0, PBM uses AWS SDK v2. The AWS SDK v1 values are deprecated. They are kept for backward compatibility. -To specify several event types, separate them by comma. To lean more about the event types, see [the documentation](https://pkg.go.dev/github.com/aws/aws-sdk-go@v1.40.7/aws#LogLevelType) +Please find the mapping table below: + +| AWS SDK v1 value | AWS SDK v2 value | +|------------------|------------------| +| `LogDebug` | `LogRequest`
`LogResponse`| +| `Signing` | `LogSigning`| +| `HTTPBody` | `LogRequestWithBody`
LogResponseWithBody| +| `RequestRetries` | `LogDebugWithRequestRetries`| +| `RequestErrors` | `LogDebugWithRequestErrors`| +| `EventStreamBody`| `LogRequestWithBody`
`LogResponseWithBody`| + + +To specify several event types, separate them by comma. To learn more about the event types, see [the documentation :octicons-link-external-16:](https://pkg.go.dev/github.com/aws/aws-sdk-go@v1.40.7/aws#LogLevelType) When undefined, no S3 debug logging is performed.