Remove unnecessary error logging. Fixes BUKKIT-4406

This commit is contained in:
EvilSeph 2013-09-10 19:45:36 -04:00
parent ffcd0f4502
commit b8feaf059c

View file

@ -112,7 +112,7 @@ public abstract class Packet {
++o;
p += (long) packet.a();
} catch (EOFException eofexception) {
iconsolelogmanager.severe("Reached end of stream for " + socket.getInetAddress());
//iconsolelogmanager.severe("Reached end of stream for " + socket.getInetAddress()); // CraftBukkit - remove unnecessary logging
return null;
}