We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f58b40a commit a06da69Copy full SHA for a06da69
src/main/java/com/github/quiltservertools/wires/config/Config.java
@@ -33,11 +33,15 @@ public Config() {
33
try {
34
this.json = new JsonParser().parse(new String(Files.readAllBytes(Paths.get(path)))).getAsJsonObject();
35
muted = initMuted();
36
+ Wires.LOGGER.info("Loaded Wires config");
37
} catch (IOException e) {
- e.printStackTrace();
38
+ muted = new ArrayList<>();
39
+ Wires.LOGGER.info("Unable to find existing Wires config file");
40
+ Wires.LOGGER.info("A config file will be created on server shutdown");
41
}
42
this.serverMute = new ServerMute();
43
this.staffChat = new StaffChat();
44
+
45
46
47
private List<Mute> initMuted() {
0 commit comments