Skip to content

Commit 3db0e87

Browse files
committed
logger(S3ClientProvider): make it static private and final; use appropriate name
1 parent 06f16fe commit 3db0e87

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/main/java/software/amazon/nio/spi/s3/S3ClientProvider.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,7 @@ public class S3ClientProvider {
9999
);
100100
}
101101

102-
Logger logger = LoggerFactory.getLogger("S3ClientStoreProvider");
102+
static private final Logger logger = LoggerFactory.getLogger(S3ClientProvider.class);
103103

104104
public S3ClientProvider(S3NioSpiConfiguration c) {
105105
this.configuration = (c == null) ? new S3NioSpiConfiguration() : c;

0 commit comments

Comments
 (0)