stopped logging

This commit is contained in:
StevenRS11 2014-04-11 19:27:26 -04:00
parent 56e522a61a
commit 18460348af
2 changed files with 0 additions and 4 deletions

View file

@ -315,8 +315,6 @@ public class mod_pocketDim
{
PocketManager.unload();
deathTracker.writeToFile();
System.out.println(DDLogger.logger().printLog());
DDLogger.logger().clearLog();
deathTracker = null;
worldProperties = null;
this.currrentSaveRootDirectory=null;

View file

@ -252,7 +252,6 @@ public class DDSaveHandler
public static boolean saveAll(Iterable<? extends IPackable<PackedDimData>> dimensions,
List<Integer> blacklist, boolean checkModified) throws IOException
{
DDLogger.startTimer("Saving data");
// Create the data directory for our dimensions
// Don't catch exceptions here. If we can't create this folder,
// the mod should crash to let the user know early on.
@ -292,7 +291,6 @@ public class DDSaveHandler
}
}
DDLogger.stopTimer("Saving data");
return succeeded;
}