Ported to 1.7

This commit is contained in:
AlgorithmX2
2014-02-08 19:34:52 -06:00
parent 30c1deb8cf
commit d50c7f6312
328 changed files with 2209 additions and 2311 deletions
+4 -4
View File
@@ -1,6 +1,6 @@
package appeng.core;
import java.util.logging.Level;
import org.apache.logging.log4j.Level;
import appeng.core.features.AEFeature;
import appeng.util.Platform;
@@ -24,12 +24,12 @@ public class AELog
public static void severe(String format, Object... data)
{
log( Level.SEVERE, format, data );
log( Level.ERROR, format, data );
}
public static void warning(String format, Object... data)
{
log( Level.WARNING, format, data );
log( Level.WARN, format, data );
}
public static void info(String format, Object... data)
@@ -39,7 +39,7 @@ public class AELog
public static void grinder(String o)
{
log( Level.FINEST, "grinder: " + o );
log( Level.DEBUG, "grinder: " + o );
}
public static void error(Throwable e)