Clean up debug info

This commit is contained in:
dfsek
2020-10-01 18:22:38 -07:00
parent 576365b688
commit e36e5f390c
15 changed files with 68 additions and 53 deletions

View File

@@ -1,5 +1,6 @@
package com.dfsek.terra.generation;
import com.dfsek.terra.Debug;
import com.dfsek.terra.Terra;
import com.dfsek.terra.TerraWorld;
import com.dfsek.terra.biome.TerraBiomeGrid;
@@ -152,7 +153,7 @@ public class TerraChunkGenerator extends GaeaChunkGenerator {
for(Map.Entry<World, PopulationManager> e : popMap.entrySet()) {
try {
e.getValue().saveBlocks(e.getKey());
Bukkit.getLogger().info("[Terra] Saved data for world " + e.getKey().getName());
Debug.info("[Terra] Saved data for world " + e.getKey().getName());
} catch(IOException ioException) {
ioException.printStackTrace();
}