Add log message for packet discard

This commit is contained in:
UnfamiliarLegacy 2023-06-07 19:19:50 +02:00
parent de39613091
commit df3aabf518

View File

@ -35,6 +35,7 @@ public class NitroPacketHandler extends PacketHandler {
final Session localSession = session.getSession();
if (localSession == null) {
logger.warn("Discarding {} bytes because the session for direction {} was null", buffer.length, this.direction);
return false;
}