2013-12-27 23:59:59 +01:00
|
|
|
package appeng.core;
|
|
|
|
|
2014-02-09 02:34:52 +01:00
|
|
|
import org.apache.logging.log4j.Level;
|
2013-12-27 23:59:59 +01:00
|
|
|
|
2014-02-07 21:37:22 +01:00
|
|
|
import appeng.core.features.AEFeature;
|
2014-03-13 04:14:55 +01:00
|
|
|
import appeng.tile.AEBaseTile;
|
2014-01-01 07:31:36 +01:00
|
|
|
import appeng.util.Platform;
|
2013-12-27 23:59:59 +01:00
|
|
|
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)
|
|
|
|
{
|
2014-02-09 06:08:27 +01:00
|
|
|
if ( AEConfig.instance == null || AEConfig.instance.isFeatureEnabled( AEFeature.Logging ) )
|
2014-02-07 21:37:22 +01:00
|
|
|
{
|
|
|
|
FMLRelaunchLog.log( "AE2:" + (Platform.isServer() ? "S" : "C"), level, format, data );
|
|
|
|
}
|
2013-12-27 23:59:59 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
public static void severe(String format, Object... data)
|
|
|
|
{
|
2014-02-09 02:34:52 +01:00
|
|
|
log( Level.ERROR, format, data );
|
2013-12-27 23:59:59 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
public static void warning(String format, Object... data)
|
|
|
|
{
|
2014-02-09 02:34:52 +01:00
|
|
|
log( Level.WARN, format, data );
|
2013-12-27 23:59:59 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
public static void info(String format, Object... data)
|
|
|
|
{
|
|
|
|
log( Level.INFO, format, data );
|
|
|
|
}
|
|
|
|
|
|
|
|
public static void grinder(String o)
|
|
|
|
{
|
2014-05-06 21:56:06 +02:00
|
|
|
if ( AEConfig.instance.isFeatureEnabled( AEFeature.GrinderLogging ) )
|
|
|
|
{
|
|
|
|
log( Level.DEBUG, "grinder: " + o );
|
|
|
|
}
|
2013-12-27 23:59:59 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
public static void error(Throwable e)
|
|
|
|
{
|
2014-02-09 06:08:27 +01:00
|
|
|
if ( AEConfig.instance.isFeatureEnabled( AEFeature.Logging ) )
|
2014-02-07 21:37:22 +01:00
|
|
|
{
|
2014-04-09 22:41:13 +02:00
|
|
|
severe( "Error: " + e.getClass().getName() + " : " + e.getMessage() );
|
2014-02-07 21:37:22 +01:00
|
|
|
e.printStackTrace();
|
|
|
|
}
|
2013-12-27 23:59:59 +01:00
|
|
|
}
|
2014-02-09 19:35:35 +01:00
|
|
|
|
|
|
|
public static void integration(Throwable exception)
|
|
|
|
{
|
|
|
|
if ( AEConfig.instance.isFeatureEnabled( AEFeature.IntegrationLogging ) )
|
|
|
|
{
|
|
|
|
error( exception );
|
|
|
|
}
|
|
|
|
}
|
2014-03-13 04:14:55 +01:00
|
|
|
|
|
|
|
public static void blockUpdate(int xCoord, int yCoord, int zCoord, AEBaseTile aeBaseTile)
|
|
|
|
{
|
|
|
|
if ( AEConfig.instance.isFeatureEnabled( AEFeature.UpdateLogging ) )
|
|
|
|
{
|
|
|
|
info( aeBaseTile.getClass().getName() + " @ " + xCoord + ", " + yCoord + ", " + zCoord );
|
|
|
|
}
|
|
|
|
}
|
2013-12-27 23:59:59 +01:00
|
|
|
}
|