use of com.evolveum.midpoint.web.page.admin.configuration.dto.ClassLogger in project midpoint by Evolveum.
the class LoggingConfigPanel method addClassLoggerPerformed.
private void addClassLoggerPerformed(AjaxRequestTarget target) {
LoggingDto dto = getModel().getObject();
ClassLogger logger = new ClassLogger(new ClassLoggerConfigurationType());
logger.setEditing(true);
dto.getLoggers().add(logger);
TablePanel loggersTable = getLoggersTable();
adjustLoggersTablePage(loggersTable, dto);
target.add(getLoggersTable());
}
Aggregations