From 15ca0810bad68f38d7a50b7516f679cfb7d5819b Mon Sep 17 00:00:00 2001 From: graywolf336 Date: Sat, 28 Dec 2013 12:04:44 -0600 Subject: [PATCH] Remove the debugging message, as it is now in the loaded message. --- src/main/java/com/graywolf336/jail/JailIO.java | 1 - 1 file changed, 1 deletion(-) diff --git a/src/main/java/com/graywolf336/jail/JailIO.java b/src/main/java/com/graywolf336/jail/JailIO.java index b172f83..6a7aebf 100644 --- a/src/main/java/com/graywolf336/jail/JailIO.java +++ b/src/main/java/com/graywolf336/jail/JailIO.java @@ -285,7 +285,6 @@ public class JailIO { if(flat.isConfigurationSection(node + "cells")) { Set cells = flat.getConfigurationSection(node + "cells").getKeys(false); if(!cells.isEmpty()) { - pl.getLogger().info("Cell configuration section for " + name + " exists and there are " + cells.size() + " cells."); for(String cell : cells) { Cell c = new Cell(cell); String cellNode = cNode + "cell.";