aws-sdk-java
aws-sdk-java copied to clipboard
fix: s3 (I corrected the log typo at the debug level)
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"