Added clarification for debugging message because of people thinking it is an error.

This commit is contained in:
MattBDev 2020-03-20 20:04:31 -04:00
parent 9f07894f28
commit a49a09a042

View File

@ -231,9 +231,9 @@ public class BukkitGetBlocks_1_15_2 extends CharGetBlocks {
int ordinal = set.getBlock(lx, ly, lz).getOrdinal();
if (log.isInfoEnabled()) {
log.info("ordinal: " + ordinal + "NBT: " + set.getBlock(lx, ly, lz).hasNbtData());
log.info("The following is not an error. It just a debugging message. There is no need to report this. \n ordinal: " + ordinal + "NBT: " + set.getBlock(lx, ly, lz).hasNbtData());
} else {
log.error("ordinal: " + ordinal + "NBT: " + set.getBlock(lx, ly, lz).hasNbtData());
log.error("The following is not an error. It just a debugging message. There is no need to report this. \n ordinal: " + ordinal + "NBT: " + set.getBlock(lx, ly, lz).hasNbtData());
}
if (ordinal != 0) {
TileEntity tile = entry.getValue();