Applied-Energistics-2-tiler.../core/AELog.java
2014-02-07 14:56:50 -06:00

53 lines
1.2 KiB
Java

package appeng.core;
import java.util.logging.Level;
import appeng.core.features.AEFeature;
import appeng.util.Platform;
import cpw.mods.fml.relauncher.FMLRelaunchLog;
public class AELog
{
public static cpw.mods.fml.relauncher.FMLRelaunchLog instance = cpw.mods.fml.relauncher.FMLRelaunchLog.log;
private AELog() {
}
private static void log(Level level, String format, Object... data)
{
if ( Configuration.instance == null || Configuration.instance.isFeatureEnabled( AEFeature.Logging ) )
{
FMLRelaunchLog.log( "AE2:" + (Platform.isServer() ? "S" : "C"), level, format, data );
}
}
public static void severe(String format, Object... data)
{
log( Level.SEVERE, format, data );
}
public static void warning(String format, Object... data)
{
log( Level.WARNING, format, data );
}
public static void info(String format, Object... data)
{
log( Level.INFO, format, data );
}
public static void grinder(String o)
{
log( Level.FINEST, "grinder: " + o );
}
public static void error(Throwable e)
{
if ( Configuration.instance.isFeatureEnabled( AEFeature.Logging ) )
{
severe( "Error: " + e.getMessage() );
e.printStackTrace();
}
}
}