ForgePatch/fml/common/cpw/mods/fml/common/FMLLog.java

69 lines
1.7 KiB
Java
Raw Normal View History

2012-07-23 19:03:17 +00:00
package cpw.mods.fml.common;
import java.util.logging.Level;
import java.util.logging.Logger;
public class FMLLog
{
private static cpw.mods.fml.relauncher.FMLRelaunchLog coreLog = cpw.mods.fml.relauncher.FMLRelaunchLog.log;
2012-07-23 19:03:17 +00:00
public static void log(String logChannel, Level level, String format, Object... data)
{
coreLog.log(logChannel, level, format, data);
}
2012-07-23 19:03:17 +00:00
public static void log(Level level, String format, Object... data)
{
coreLog.log(level, format, data);
2012-07-23 19:03:17 +00:00
}
public static void log(String logChannel, Level level, Throwable ex, String format, Object... data)
{
coreLog.log(logChannel, level, ex, format, data);
}
2012-07-23 19:03:17 +00:00
public static void log(Level level, Throwable ex, String format, Object... data)
{
coreLog.log(level, ex, format, data);
2012-07-23 19:03:17 +00:00
}
2012-07-23 19:03:17 +00:00
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 fine(String format, Object... data)
{
log(Level.FINE, format, data);
}
public static void finer(String format, Object... data)
{
log(Level.FINER, format, data);
}
public static void finest(String format, Object... data)
{
log(Level.FINEST, format, data);
}
public static Logger getLogger()
2012-07-23 19:03:17 +00:00
{
return coreLog.getLogger();
2012-07-23 19:03:17 +00:00
}
public static void makeLog(String logChannel)
{
coreLog.makeLog(logChannel);
}
2012-07-23 19:03:17 +00:00
}