We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2c24560 commit b3b08b3Copy full SHA for b3b08b3
1 file changed
src/main/java/com/hiddentech/playerstorage/PlayerStorageAPI.java
@@ -20,6 +20,7 @@
20
import java.util.Objects;
21
import java.util.UUID;
22
import java.util.logging.Level;
23
+import java.util.logging.Logger;
24
25
public class PlayerStorageAPI {
26
@@ -60,8 +61,8 @@ public PlayerRegistry getRegistry() {
60
61
private static PlayerStorageAPI instance;
62
63
private PlayerStorageAPI(JavaPlugin plugin) {
64
+ Logger.getLogger("org.mongodb.driver").setLevel(Level.WARNING);
65
this.plugin = plugin;
- //unsure why this is not being found in my ide
66
this.registry = new PlayerRegistry(this);
67
new PlayerJoinListener(this);
68
new PlayerQuitListener(this);
0 commit comments