mirror of
https://github.com/PaperMC/Paper.git
synced 2025-01-25 09:41:29 +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
@ -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…
Reference in New Issue
Block a user