Fix exception based logging to actually log the exception!

This commit is contained in:
Christian 2012-08-19 09:31:26 -04:00
parent 3e94ee2c36
commit b07f1069b9
1 changed files with 1 additions and 1 deletions

View File

@ -14,7 +14,7 @@ public class FMLLog
public static void log(Level level, Throwable ex, String format, Object... data)
{
coreLog.log(level, String.format(format, data), ex);
coreLog.log(level, ex, String.format(format, data));
}
public static void severe(String format, Object... data)