Skip to content

Commit 1ac648c

Browse files
committed
JAVA-1185: Use . instead of : for final separator in Loggers.
1 parent 0ab988b commit 1ac648c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/main/com/mongodb/Loggers.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ public static Logger getLogger(final String suffix) {
3838
if (suffix.startsWith(".") || suffix.endsWith(".")) {
3939
throw new IllegalArgumentException("The suffix can not start or end with a '.'");
4040
}
41-
return Logger.getLogger(PREFIX + ":" + suffix);
41+
return Logger.getLogger(PREFIX + "." + suffix);
4242
}
4343

4444
private Loggers() {

0 commit comments

Comments
 (0)