Returns the log statement in a format consisting of the
level
, followed by " - " and then the
message
. For example, INFO - "A message"
The category
parameter is ignored.
sbuf.setLength(0);
sbuf.append(event.getLevel().toString());
sbuf.append(" - ");
sbuf.append(event.getRenderedMessage());
sbuf.append(LINE_SEP);
return sbuf.toString();