We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c134e9e commit eafb1b9Copy full SHA for eafb1b9
Sources/hostmgr/helpers/S3.swift
@@ -114,13 +114,17 @@ struct S3Manager {
114
let s3 = S3(client: aws, region: region)
115
116
guard Configuration.shared.allowAWSAcceleratedTransfer else {
117
+ logger.log(level: .info, "Using Standard S3 Download")
118
return s3
119
}
120
121
guard try bucketTransferAccelerationIsEnabled(for: bucket, in: region) else {
122
123
124
125
126
+ logger.log(level: .info, "Using Accelerated S3 Download")
127
+
128
return S3(client: aws, region: region, endpoint: "https://\(bucket).s3-accelerate.amazonaws.com")
129
130
0 commit comments