Removed useless net logging
This commit is contained in:
@@ -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);
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user