Add verbose logging option and a debug method to use it.

Closes #609
This commit is contained in:
NuclearW
2013-02-20 11:47:08 -05:00
parent 918d81198f
commit c805a48a87
4 changed files with 34 additions and 0 deletions

View File

@ -39,6 +39,7 @@ public class Config extends ConfigLoader {
public boolean getPreferBeta() { return config.getBoolean("General.Prefer_Beta", false); }
public boolean getEventCallbackEnabled() { return config.getBoolean("General.Event_Callback", true); }
public boolean getBackupsEnabled() { return config.getBoolean("General.Generate_Backups", true); }
public boolean getVerboseLoggingEnabled() { return config.getBoolean("General.Verbose_Logging", false); }
public boolean getPartyDisplayNames() { return config.getBoolean("Commands.p.Use_Display_Names", true); }
public boolean getAdminDisplayNames() { return config.getBoolean("Commands.a.Use_Display_Names", true); }