Skip to content

Commit 0cd8b78

Browse files
committed
refactor(s3): Remove debug print statements from S3FileSystemFactory
1 parent 01cdbbe commit 0cd8b78

File tree

1 file changed

+0
-2
lines changed

1 file changed

+0
-2
lines changed

src/main/java/dev/themeinerlp/bluemap/s3/storage/S3FileSystemFactory.java

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -62,8 +62,6 @@ public static S3Fs build(S3Configuration cfg) {
6262

6363
uri = new URI("s3","/" + cfg.getBucketName(), null, null);
6464
}
65-
System.out.println("Using S3 FileSystem Provider: " + PROVIDER.getClass().getName());
66-
System.out.println("S3 URI: " + uri);
6765
FileSystem fs = PROVIDER.getFileSystem(uri);
6866
return new S3Fs(fs, uri);
6967
} catch (Exception e) {

0 commit comments

Comments
 (0)