Skip to content
Snippets Groups Projects
Commit 85cd1cba authored by Sebastian's avatar Sebastian
Browse files

Add newline after each line in logfile

parent d71e3219
No related branches found
No related tags found
No related merge requests found
...@@ -45,10 +45,11 @@ class BriefLogFormatter extends Formatter { ...@@ -45,10 +45,11 @@ class BriefLogFormatter extends Formatter {
tag = tag.substring(tag.lastIndexOf('.') + 1); tag = tag.substring(tag.lastIndexOf('.') + 1);
sb.append(tag).append(": "); sb.append(tag).append(": ");
sb.append(record.getMessage()); sb.append(record.getMessage());
sb.append('\n');
Throwable t = record.getThrown(); Throwable t = record.getThrown();
if (t != null) { if (t != null) {
sb.append('\n');
appendThrowable(sb, t); appendThrowable(sb, t);
sb.append('\n');
} }
return sb.toString(); return sb.toString();
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment