Print short message on exception to avoid spamming console. Fixes BUKKIT-2018

This commit is contained in:
Travis Watkins 2012-08-03 00:46:42 -05:00
parent dcf83bc1b5
commit f5794937a9

View File

@ -87,7 +87,7 @@ public class DedicatedServerConnectionThread extends Thread {
this.a(netloginhandler); this.a(netloginhandler);
} catch (IOException ioexception) { } catch (IOException ioexception) {
ioexception.printStackTrace(); a.warning("DSCT: " + ioexception.getMessage()); // CraftBukkit
} }
} }