Removed useless net logging

This commit is contained in:
Anuken
2019-04-08 08:37:13 -04:00
parent 986b4276e1
commit f83a178982

View File

@@ -96,7 +96,6 @@ public class Net{
if(loaded){ if(loaded){
//handle all packets that were skipped while loading //handle all packets that were skipped while loading
for(int i = 0; i < packetQueue.size; i++){ for(int i = 0; i < packetQueue.size; i++){
Log.info("Processing {0} packet post-load.", packetQueue.get(i).getClass());
handleClientReceived(packetQueue.get(i)); handleClientReceived(packetQueue.get(i));
} }
} }
@@ -268,7 +267,6 @@ public class Net{
Pools.free(object); Pools.free(object);
}else if(!((object instanceof Packet) && ((Packet) object).isUnimportant())){ }else if(!((object instanceof Packet) && ((Packet) object).isUnimportant())){
packetQueue.add(object); packetQueue.add(object);
Log.info("Queuing packet {0}", object);
}else{ }else{
Pools.free(object); Pools.free(object);
} }