Skip to content

Commit

Permalink
log(S3FileSystem): Use scheme of the provider instead of s3
Browse files Browse the repository at this point in the history
  • Loading branch information
guicamest committed Nov 2, 2023
1 parent 3eaf542 commit d5d90f1
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 d5d90f1

Please sign in to comment.