3
0
Mirror von https://github.com/IntellectualSites/FastAsyncWorldEdit.git synchronisiert 2024-10-06 22:00:08 +02:00

Move debug notes to logger factory

Dieser Commit ist enthalten in:
NotMyFault 2021-07-29 21:11:23 +02:00
Ursprung 17019ac723
Commit 84b9dce6be
Es konnte kein GPG-Schlüssel zu dieser Signatur gefunden werden
GPG-Schlüssel-ID: 158F5701A6AAD00C

Datei anzeigen

@ -209,8 +209,8 @@ public class DiskOptimizedClipboard extends LinearClipboard implements Closeable
try {
byteBuffer.put(HEADER_SIZE + (getVolume() << 1) + index, (byte) biome.getInternalId());
} catch (IndexOutOfBoundsException e) {
System.out.println((long) (getHeight() >> 2) * (getLength() >> 2) * (getWidth() >> 2));
System.out.println(index);
LOGGER.info((long) (getHeight() >> 2) * (getLength() >> 2) * (getWidth() >> 2));
LOGGER.info(index);
e.printStackTrace();
}
}