mirror of
https://github.com/PaperMC/Paper.git
synced 2024-11-30 04:02:50 +01:00
Remove unnecessary error logging. Fixes BUKKIT-4406
This commit is contained in:
parent
ffcd0f4502
commit
b8feaf059c
1 changed files with 1 additions and 1 deletions
|
@ -112,7 +112,7 @@ public abstract class Packet {
|
||||||
++o;
|
++o;
|
||||||
p += (long) packet.a();
|
p += (long) packet.a();
|
||||||
} catch (EOFException eofexception) {
|
} 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;
|
return null;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue