Fix exception based logging to actually log the exception!
This commit is contained in:
parent
3e94ee2c36
commit
b07f1069b9
1 changed files with 1 additions and 1 deletions
|
@ -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)
|
||||
|
|
Loading…
Reference in a new issue