}
} else if(event instanceof ServiceLogEvent) {
String label = "ServiceLogEvent."+eventNode.getValueAt(0);
tableData.put("Event", label);
ServiceLogEvent sle = (ServiceLogEvent)event;
thrown = sle.getLogRecord().getThrown();
String exception = getExceptionText(thrown);
tableData.put("When", Constants.DATE_FORMAT.format(event.getDate()));
tableData.put("Deployment", sle.getOpStringName());
tableData.put("Service", sle.getServiceName());
tableData.put("Machine", sle.getAddress().getHostName());
tableData.put("Message", sle.getLogRecord().getLevel()+": "+sle.getLogRecord().getMessage());
if(exception!=null) {
tableData.put("Exception", exception);
table.setRowHeight(tableData.size(), table.getRowHeight() * 20);
}
} else {