Skip to content

Commit

Permalink
log(S3FileSystem): Use scheme of the provider instead of s3 (awslab…
Browse files Browse the repository at this point in the history
  • Loading branch information
guicamest authored Nov 3, 2023
1 parent f78ab20 commit 5dcf2d0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/java/software/amazon/nio/spi/s3/S3FileSystem.java
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ public class S3FileSystem extends FileSystem {
configuration = (config == null) ? new S3NioSpiConfiguration() : config;
bucketName = configuration.getBucketName();

logger.debug("creating FileSystem for 's3://{}'", bucketName);
logger.debug("creating FileSystem for '{}://{}'", provider.getScheme(), bucketName);

clientProvider = new S3ClientProvider(configuration);
this.provider = provider;
Expand Down

0 comments on commit 5dcf2d0

Please sign in to comment.