Skip to content

Commit c06923c

Browse files
desokroshanrohandubal
authored andcommitted
Shorten the log tag length (#870)
* Shorten log tag length * Update changelog
1 parent d6eb96c commit c06923c

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@
1111

1212
* **Amazon S3**
1313
* Fixed an issue where the transfer state is not set to `WAITING_FOR_NETWORK` when the network disconnects. See [issue #616](https://github.com/aws-amplify/aws-sdk-android/issues/616)
14+
* Shorten `RepeatableFileInputStream` log tag to be within the 23 character limit imposed by android on certain API Levels. See [issue #787](https://github.com/aws-amplify/aws-sdk-android/issues/787)
1415

1516
* **AWS Mobile Client**
1617
* Fixed a bug that caused repetitive sign-in using the drop-in UI to the same provider to not federate the correct credentials. See [issue #809](https://github.com/aws-amplify/aws-sdk-android/issues/809)

aws-android-sdk-s3/src/main/java/com/amazonaws/services/s3/internal/RepeatableFileInputStream.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@
3434
* unlimited number of times, without any limitation on when a repeat can occur.
3535
*/
3636
public class RepeatableFileInputStream extends SdkInputStream {
37-
private static final Log log = LogFactory.getLog(RepeatableFileInputStream.class);
37+
private static final Log log = LogFactory.getLog("RepeatableFIS");
3838

3939
private final File file;
4040
private FileInputStream fis = null;

0 commit comments

Comments
 (0)