mirror of
https://github.com/PaperMC/Paper.git
synced 2025-01-24 01:06:01 +01:00
Use standard format function to format logs. Addresses BUKKIT-2246
Also fix "excess" Log Levels. By: EdGruberman <ed@rjump.com>
This commit is contained in:
parent
ae2357b96e
commit
9c8b353591
1 changed files with 1 additions and 1 deletions
|
@ -46,7 +46,7 @@ public class ShortConsoleLogFormatter extends Formatter {
|
|||
builder.append(" [");
|
||||
builder.append(record.getLevel().getLocalizedName().toUpperCase());
|
||||
builder.append("] ");
|
||||
builder.append(record.getMessage());
|
||||
builder.append(formatMessage(record));
|
||||
builder.append('\n');
|
||||
|
||||
if (ex != null) {
|
||||
|
|
Loading…
Add table
Reference in a new issue