this doesn't compile yet, but have something to peek at

This commit is contained in:
Nicholas Ignoffo 2017-08-14 20:53:42 -07:00
parent 973f1019a5
commit 5fcdd978d7
329 changed files with 3247 additions and 2953 deletions

View file

@ -15,19 +15,19 @@ public class LogHelper
public void info(String info, Object... format)
{
if (BloodMagicAPI.isLoggingEnabled())
if (BloodMagicAPI.loggingEnabled)
logger.info(info, format);
}
public void error(String error, Object... format)
{
if (BloodMagicAPI.isLoggingEnabled())
if (BloodMagicAPI.loggingEnabled)
logger.error(error, format);
}
public void debug(String debug, Object... format)
{
if (BloodMagicAPI.isLoggingEnabled())
if (BloodMagicAPI.loggingEnabled)
logger.debug(debug, format);
}