refactor: add more debug info

This commit is contained in:
Derrick Hammer 2024-02-28 11:08:05 -05:00
parent fba98da0e0
commit 55203fa466
Signed by: pcfreak30
GPG Key ID: C997C339BE476FF2
1 changed files with 1 additions and 1 deletions

View File

@ -385,7 +385,7 @@ func (s StorageServiceDefault) S3MultipartUpload(ctx context.Context, data io.Re
PartNumber: aws.Int32(int32(partNum)), PartNumber: aws.Int32(int32(partNum)),
}) })
s.logger.Debug("Completed part", zap.Int("partNum", partNum), zap.String("key", key), zap.String("bucket", bucket)) s.logger.Debug("Completed part", zap.Int("partNum", partNum), zap.Int("totalParts", totalParts), zap.Uint64("partSize", partSize), zap.Int("readSize", readSize), zap.Int("size", int(size)), zap.Int("totalParts", totalParts), zap.Int("partNum", partNum), zap.String("key", key), zap.String("bucket", bucket))
} }
// Ensure parts are ordered by part number before completing the upload // Ensure parts are ordered by part number before completing the upload