Added GrinderLogging and hid Grinder Logging behind it.

This commit is contained in:
AlgorithmX2
2014-05-06 14:56:06 -05:00
parent 93aad6c53b
commit 50aa0b9062
3 changed files with 6 additions and 3 deletions
+4 -1
View File
@@ -40,7 +40,10 @@ public class AELog
public static void grinder(String o)
{
log( Level.DEBUG, "grinder: " + o );
if ( AEConfig.instance.isFeatureEnabled( AEFeature.GrinderLogging ) )
{
log( Level.DEBUG, "grinder: " + o );
}
}
public static void error(Throwable e)