public void publish(LogRecord record) {
// Add the record to the capturing status.
String message = record.getMessage();
Level level = record.getLevel();
int levelValue = level.intValue();
// Only interested in warnings and errors.
Status.Severity severity = null;
if (levelValue >= Level.SEVERE.intValue()) {
severity = Status.Severity.ERROR;