Show more details in error log which world the error belongs to.

This commit is contained in:
ST-DDT 2014-12-19 13:55:18 +01:00 committed by sk89q
parent 83b1dabcdd
commit 9dcbd8df74
1 changed files with 4 additions and 0 deletions

View File

@ -32,6 +32,7 @@ import org.bukkit.block.Block;
import org.bukkit.entity.EntityType;
import org.bukkit.entity.Player;
import org.bukkit.potion.PotionEffectType;
import org.yaml.snakeyaml.parser.ParserException;
import java.io.File;
import java.io.FileNotFoundException;
@ -302,6 +303,9 @@ public class WorldConfiguration {
} catch (IOException e) {
plugin.getLogger().severe("Error reading configuration for world " + worldName + ": ");
e.printStackTrace();
} catch (ParserException e) {
log.severe("Error parsing configuration for world " + worldName + ". ");
throw e;
}
summaryOnStart = getBoolean("summary-on-start", true);