Skip to content

Commit

Permalink
Logging fix
Browse files Browse the repository at this point in the history
  • Loading branch information
VenixPLL committed Jan 4, 2021
1 parent 983af47 commit 6325b1a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/java/pl/venixpll/utils/LogUtil.java
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ public String format(final LogRecord record) {

final String level = record.getLevel() == Level.SEVERE ? "ERROR" : record.getLevel() == Level.WARNING ? "WARN" : "INFO";

return date.format(record.getMillis()) + " [" + level + "/" + Thread.currentThread().getName() + "] " + formatMessage(record) + System.lineSeparator();
return date.format(record.getMillis()) + " [" + level + "/" + Thread.currentThread().getName() + "] " + formatMessage(record);
}
});

Expand Down

0 comments on commit 6325b1a

Please sign in to comment.