We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0ab988b commit 1ac648cCopy full SHA for 1ac648c
src/main/com/mongodb/Loggers.java
@@ -38,7 +38,7 @@ public static Logger getLogger(final String suffix) {
38
if (suffix.startsWith(".") || suffix.endsWith(".")) {
39
throw new IllegalArgumentException("The suffix can not start or end with a '.'");
40
}
41
- return Logger.getLogger(PREFIX + ":" + suffix);
+ return Logger.getLogger(PREFIX + "." + suffix);
42
43
44
private Loggers() {
0 commit comments