Skip to content

Commit 6dcae23

Browse files
committed
Updated logs
1 parent fe2b64a commit 6dcae23

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

src/test/java/S3ListObjectsIteratorContainerTest.java

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -117,7 +117,7 @@ public void setUp() {
117117

118118
@Test
119119
public void testS3ObjectIterator() {
120-
System.out.println("Testing: " + S3ObjectIterator.class.getCanonicalName());
120+
System.out.println("Testing: " + S3ObjectIterator.class.getCanonicalName() + " with SDK: " + this.s3Client.getClass().getCanonicalName());
121121
ListObjectsV2Request listObjectsV2Request = ListObjectsV2Request.builder()
122122
.bucket(s3BucketName)
123123
.prefix(s3KeyPrefix)
@@ -130,7 +130,7 @@ public void testS3ObjectIterator() {
130130

131131
@Test
132132
public void testS3ObjectIteratorAsync() {
133-
System.out.println("Testing: " + AsyncS3ObjectIterator.class.getCanonicalName());
133+
System.out.println("Testing: " + AsyncS3ObjectIterator.class.getCanonicalName() + " with SDK: " + this.s3AsyncClient.getClass().getCanonicalName());
134134
ListObjectsV2Request listObjectsV2Request = ListObjectsV2Request.builder()
135135
.bucket(s3BucketName)
136136
.prefix(s3KeyPrefix)
@@ -143,7 +143,7 @@ public void testS3ObjectIteratorAsync() {
143143

144144
@Test
145145
public void testS3ObjectIteratorAsyncCrt() {
146-
System.out.println("Testing: " + AsyncS3ObjectIterator.class.getCanonicalName());
146+
System.out.println("Testing: " + AsyncS3ObjectIterator.class.getCanonicalName() + " with SDK: " + this.s3AsyncCrtClient.getClass().getCanonicalName());
147147
ListObjectsV2Request listObjectsV2Request = ListObjectsV2Request.builder()
148148
.bucket(s3BucketName)
149149
.prefix(s3KeyPrefix)
@@ -156,7 +156,7 @@ public void testS3ObjectIteratorAsyncCrt() {
156156

157157
@Test
158158
public void testS3ObjectSummaryIterator() {
159-
System.out.println("Testing: " + S3ObjectSummaryIterator.class.getCanonicalName());
159+
System.out.println("Testing: " + S3ObjectSummaryIterator.class.getCanonicalName()+ " with SDK: " + this.amazonS3.getClass().getCanonicalName());
160160
com.amazonaws.services.s3.model.ListObjectsV2Request listObjectsV2Request = new com.amazonaws.services.s3.model.ListObjectsV2Request()
161161
.withBucketName(s3BucketName)
162162
.withPrefix(s3KeyPrefix);

0 commit comments

Comments
 (0)