aws-sdk-java icon indicating copy to clipboard operation
aws-sdk-java copied to clipboard

fix: s3 (I corrected the log typo at the debug level)

Open seheonCho opened this issue 4 years ago • 0 comments

fix: s3 (I corrected the log typo at the debug level)

aws-java-sdk-s3/src/main/java/com/amazonaws/services/s3/transfer/TransferProgress.java:86

before

log.debug("Number of bytes transfered is more than the actual total bytes to transfer. Total number of bytes to Transfer : "
                        + totalBytesToTransfer
                        + ". Bytes Transferred : "
                        + (bytesTransferred + bytes));

after

log.debug("Number of bytes transferred is more than the actual total bytes to transfer. Total number of bytes to Transfer : "
                        + totalBytesToTransfer
                        + ". Bytes Transferred : "
                        + (bytesTransferred + bytes));

Description of changes: I need to fix it as follows. "transfered" -> "transferred"

seheonCho avatar Jan 04 '22 13:01 seheonCho