Basic reformat, hit once, hope never again
This commit is contained in:
@@ -18,6 +18,7 @@
|
||||
|
||||
package appeng.core;
|
||||
|
||||
|
||||
import org.apache.logging.log4j.Level;
|
||||
|
||||
import cpw.mods.fml.relauncher.FMLRelaunchLog;
|
||||
@@ -26,76 +27,77 @@ import appeng.core.features.AEFeature;
|
||||
import appeng.tile.AEBaseTile;
|
||||
import appeng.util.Platform;
|
||||
|
||||
|
||||
public final class AELog
|
||||
{
|
||||
|
||||
public static final FMLRelaunchLog INSTANCE = FMLRelaunchLog.log;
|
||||
|
||||
private AELog() {
|
||||
}
|
||||
|
||||
private static void log(Level level, String format, Object... data)
|
||||
private AELog()
|
||||
{
|
||||
if ( AEConfig.instance == null || AEConfig.instance.isFeatureEnabled( AEFeature.Logging ) )
|
||||
{
|
||||
FMLRelaunchLog.log( "AE2:" + (Platform.isServer() ? "S" : "C"), level, format, data );
|
||||
}
|
||||
}
|
||||
|
||||
public static void severe(String format, Object... data)
|
||||
{
|
||||
log( Level.ERROR, format, data );
|
||||
}
|
||||
|
||||
public static void warning(String format, Object... data)
|
||||
public static void warning( String format, Object... data )
|
||||
{
|
||||
log( Level.WARN, format, data );
|
||||
}
|
||||
|
||||
public static void info(String format, Object... data)
|
||||
private static void log( Level level, String format, Object... data )
|
||||
{
|
||||
log( Level.INFO, format, data );
|
||||
if( AEConfig.instance == null || AEConfig.instance.isFeatureEnabled( AEFeature.Logging ) )
|
||||
{
|
||||
FMLRelaunchLog.log( "AE2:" + ( Platform.isServer() ? "S" : "C" ), level, format, data );
|
||||
}
|
||||
}
|
||||
|
||||
public static void grinder(String o)
|
||||
public static void grinder( String o )
|
||||
{
|
||||
if ( AEConfig.instance.isFeatureEnabled( AEFeature.GrinderLogging ) )
|
||||
if( AEConfig.instance.isFeatureEnabled( AEFeature.GrinderLogging ) )
|
||||
{
|
||||
log( Level.DEBUG, "grinder: " + o );
|
||||
}
|
||||
}
|
||||
|
||||
public static void error(Throwable e)
|
||||
public static void integration( Throwable exception )
|
||||
{
|
||||
if ( AEConfig.instance.isFeatureEnabled( AEFeature.Logging ) )
|
||||
if( AEConfig.instance.isFeatureEnabled( AEFeature.IntegrationLogging ) )
|
||||
{
|
||||
error( exception );
|
||||
}
|
||||
}
|
||||
|
||||
public static void error( Throwable e )
|
||||
{
|
||||
if( AEConfig.instance.isFeatureEnabled( AEFeature.Logging ) )
|
||||
{
|
||||
severe( "Error: " + e.getClass().getName() + " : " + e.getMessage() );
|
||||
e.printStackTrace();
|
||||
}
|
||||
}
|
||||
|
||||
public static void integration(Throwable exception)
|
||||
public static void severe( String format, Object... data )
|
||||
{
|
||||
if ( AEConfig.instance.isFeatureEnabled( AEFeature.IntegrationLogging ) )
|
||||
{
|
||||
error( exception );
|
||||
}
|
||||
log( Level.ERROR, format, data );
|
||||
}
|
||||
|
||||
public static void blockUpdate(int xCoord, int yCoord, int zCoord, AEBaseTile aeBaseTile)
|
||||
public static void blockUpdate( int xCoord, int yCoord, int zCoord, AEBaseTile aeBaseTile )
|
||||
{
|
||||
if ( AEConfig.instance.isFeatureEnabled( AEFeature.UpdateLogging ) )
|
||||
if( AEConfig.instance.isFeatureEnabled( AEFeature.UpdateLogging ) )
|
||||
{
|
||||
info( aeBaseTile.getClass().getName() + " @ " + xCoord + ", " + yCoord + ", " + zCoord );
|
||||
}
|
||||
}
|
||||
|
||||
public static void crafting(String format, Object... data)
|
||||
public static void info( String format, Object... data )
|
||||
{
|
||||
if ( AEConfig.instance.isFeatureEnabled( AEFeature.CraftingLog ) )
|
||||
log( Level.INFO, format, data );
|
||||
}
|
||||
|
||||
public static void crafting( String format, Object... data )
|
||||
{
|
||||
if( AEConfig.instance.isFeatureEnabled( AEFeature.CraftingLog ) )
|
||||
{
|
||||
log( Level.INFO, format, data );
|
||||
}
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user