Make FML logs use system line endings for consistency with Java stack traces in the logs.

This commit is contained in:
Dion Williams 2012-06-14 18:01:35 +01:00
parent 27f8d07e44
commit 64f7b219af
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(record.getMessage());
msg.append('\n'); msg.append(System.lineSeparator());
Throwable thr = record.getThrown(); Throwable thr = record.getThrown();
if (thr != null) if (thr != null)