Proper EE3 logger, the start of it at least
This commit is contained in:
parent
792543eaac
commit
4053cdf2d3
1 changed files with 5 additions and 0 deletions
|
@ -1,5 +1,7 @@
|
||||||
package ee3.common;
|
package ee3.common;
|
||||||
|
|
||||||
|
import java.util.logging.Logger;
|
||||||
|
|
||||||
import net.minecraftforge.common.MinecraftForge;
|
import net.minecraftforge.common.MinecraftForge;
|
||||||
import cpw.mods.fml.common.FMLCommonHandler;
|
import cpw.mods.fml.common.FMLCommonHandler;
|
||||||
import cpw.mods.fml.common.Mod;
|
import cpw.mods.fml.common.Mod;
|
||||||
|
@ -51,6 +53,9 @@ public class EquivalentExchange3 {
|
||||||
|
|
||||||
@SidedProxy(clientSide = "ee3.client.core.ClientProxy", serverSide = "ee3.common.core.CommonProxy")
|
@SidedProxy(clientSide = "ee3.client.core.ClientProxy", serverSide = "ee3.common.core.CommonProxy")
|
||||||
public static CommonProxy proxy;
|
public static CommonProxy proxy;
|
||||||
|
|
||||||
|
// TODO Come back to this later
|
||||||
|
public static Logger eeLogger = Logger.getLogger(Reference.MOD_NAME);
|
||||||
|
|
||||||
@PreInit
|
@PreInit
|
||||||
public void preInit(FMLPreInitializationEvent event) {
|
public void preInit(FMLPreInitializationEvent event) {
|
||||||
|
|
Loading…
Reference in a new issue