Fix logger format arguments not being applied

This commit is contained in:
cmastudios 2013-12-07 16:15:41 -06:00
parent 78ef1dd4fc
commit 7ef61af277

View File

@ -15,7 +15,7 @@ public class WarLogFormatter extends Formatter {
b.append(" [");
b.append(arg0.getLevel());
b.append("] ");
b.append(arg0.getMessage());
b.append(formatMessage(arg0));
b.append(System.getProperty("line.separator"));
return b.toString();
}