Client + Server in log.
This commit is contained in:
parent
14f8f72b88
commit
731471651f
1 changed files with 2 additions and 1 deletions
|
@ -3,6 +3,7 @@ package appeng.core;
|
|||
import java.io.File;
|
||||
import java.util.logging.Level;
|
||||
|
||||
import appeng.util.Platform;
|
||||
import cpw.mods.fml.relauncher.FMLRelaunchLog;
|
||||
|
||||
public class AELog
|
||||
|
@ -16,7 +17,7 @@ public class AELog
|
|||
|
||||
private static void log(Level level, String format, Object... data)
|
||||
{
|
||||
FMLRelaunchLog.log( "AE", level, format, data );
|
||||
FMLRelaunchLog.log( "AE2:" + (Platform.isServer() ? "S" : "C"), level, format, data );
|
||||
}
|
||||
|
||||
public static void severe(String format, Object... data)
|
||||
|
|
Loading…
Reference in a new issue