Format the log messages through MessageFormat. Thanks CovertJaguar for the pointer. Closes #282

This commit is contained in:
Christian 2013-09-19 08:23:56 -04:00
parent fcf2af484d
commit d2712dafdb
1 changed files with 3 additions and 3 deletions

View File

@ -57,7 +57,7 @@ final class FMLLogFormatter extends Formatter
{
msg.append("[] ");
}
msg.append(record.getMessage());
msg.append(formatMessage(record));
msg.append(LINE_SEPARATOR);
Throwable thr = record.getThrown();