Merge pull request #27 from TheNoid/master

Make FML logs use system line endings …
This commit is contained in:
Christian 2012-06-14 12:06:19 -07:00
commit aec5bbb50f
1 changed files with 1 additions and 1 deletions

View File

@ -51,7 +51,7 @@ final class FMLLogFormatter extends Formatter
}
msg.append(record.getMessage());
msg.append('\n');
msg.append(System.lineSeparator());
Throwable thr = record.getThrown();
if (thr != null)