Make FML logs use system line endings for consistency with Java stack traces in the logs.
This commit is contained in:
parent
27f8d07e44
commit
64f7b219af
1 changed files with 1 additions and 1 deletions
|
@ -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)
|
||||
|
|
Loading…
Reference in a new issue