Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -243,8 +243,9 @@ public void onServerConnect(FMLNetworkEvent.ClientConnectedToServerEvent event)
logger.info("DungeonRooms: MOTD has been checked");
}
} catch (IOException | InterruptedException e) {
mc.thePlayer.addChatMessage(new ChatComponentText(EnumChatFormatting.RED + "Dungeon Rooms: An error has occured. See logs for more details."));
e.printStackTrace();
// Update check / MOTD fetch are non-critical, and commonly fail on outdated Java
// trust stores (SSLHandshakeException) - don't alarm the player in chat for this.
logger.warn("DungeonRooms: Failed to check for updates or fetch MOTD", e);
}

}).start();
Expand Down