Use standard format function to format logs. Addresses BUKKIT-2246

Also fix "excess" Log Levels.
This commit is contained in:
EdGruberman
2012-08-11 16:29:50 -07:00
committed by feildmaster
parent 161ab5edc6
commit 450edc3004
2 changed files with 3 additions and 3 deletions

View File

@@ -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) {