comment out debug messages shown on plugin startup, was a bit too spammy

This commit is contained in:
Brettflan 2011-03-04 21:39:53 -06:00
parent 74a823be88
commit 6c971742d0
1 changed files with 2 additions and 2 deletions

View File

@ -221,7 +221,7 @@ public class EM {
Follower follower = gson.fromJson(DiscUtil.read(jsonFile), Follower.class);
follower.id = name;
followers.put(follower.id, follower);
Log.debug("loaded follower "+name);
//Log.debug("loaded follower "+name);
} catch (Exception e) {
e.printStackTrace();
Log.warn("failed to load follower "+name);
@ -317,7 +317,7 @@ public class EM {
Faction faction = gson.fromJson(DiscUtil.read(jsonFile), Faction.class);
faction.id = id;
factions.put(faction.id, faction);
Log.debug("loaded faction "+id);
//Log.debug("loaded faction "+id);
} catch (Exception e) {
e.printStackTrace();
Log.warn("Failed to load faction "+id);