Change a println to use the logger

This commit is contained in:
James Seibel
2021-09-04 11:00:54 -05:00
parent e46864431b
commit ce84b30ddb
@@ -3,14 +3,15 @@ package com.seibel.lod.objects;
import java.io.Serializable;
import java.util.concurrent.ConcurrentMap;
import org.apache.commons.lang3.mutable.MutableBoolean;
import com.seibel.lod.builders.LodBuilder;
import com.seibel.lod.enums.DistanceGenerationMode;
import com.seibel.lod.objects.LevelPos.LevelPos;
import com.seibel.lod.proxy.ClientProxy;
import com.seibel.lod.util.DetailDistanceUtil;
import com.seibel.lod.util.LodUtil;
import org.apache.commons.lang3.mutable.MutableBoolean;
/**
* STANDARD TO FOLLOW
* every coordinate called posX or posZ is a relative coordinate and not and absolute coordinate
@@ -313,7 +314,9 @@ public class LodRegion implements Serializable
dataToRender.get(levelPos).setTrue();
}catch (Exception e){
/*TODO Fix this exception*/
System.out.println("error happened " + levelPos.getRegionPos());
// This seems to happen more often when using an elytra in an amplified world
// maybe it has something to do with the dimensions moving?
ClientProxy.LOGGER.error("getDataToRender had a error at " + levelPos.getRegionPos() + ". Exception: " + e.getMessage());
dataToRender.put(new LevelPos(detailLevel, posX + regionPosX * size, posZ + regionPosZ * size), new MutableBoolean(true));
}
} else