Reputation: 125
I am using AWS SDK v2 in Node.js application where I use the AWS.config.logger = console;
code to get the output of all AWS SDK call in the below format
[AWS s3 200 0.185s 0 retries] createMultipartUpload({ Bucket: 'js-sdk-test-bucket', Key: 'issues_1704' })
Here is the reference link for V2 https://docs.aws.amazon.com/sdk-for-javascript/v2/developer-guide/logging-sdk-calls.html
I want to implement the same in AWS SDK v3
Upvotes: 2
Views: 923