refactor: add debug log line

This commit is contained in:
Derrick Hammer 2024-02-28 10:59:44 -05:00
parent e45ab26a09
commit 844d3a0a5f
Signed by: pcfreak30
GPG Key ID: C997C339BE476FF2
1 changed files with 2 additions and 0 deletions

View File

@ -384,6 +384,8 @@ func (s StorageServiceDefault) S3MultipartUpload(ctx context.Context, data io.Re
ETag: uploadPartOutput.ETag,
PartNumber: aws.Int32(int32(partNum)),
})
s.logger.Debug("Completed part", zap.Int("partNum", partNum), zap.String("key", key), zap.String("bucket", bucket))
}
// Ensure parts are ordered by part number before completing the upload