info.addSelectionListener(new SelectionListener() {
public void widgetSelected(SelectionEvent e) {
if (info.getSelection()) {
execute(new SetConsoleLogLevelCommand(server, GeronimoServerDelegate.CONSOLE_INFO));
}
}
public void widgetDefaultSelected(SelectionEvent e) {
}
});
debug.addSelectionListener(new SelectionListener() {
public void widgetSelected(SelectionEvent e) {
if (debug.getSelection()) {
execute(new SetConsoleLogLevelCommand(server, GeronimoServerDelegate.CONSOLE_DEBUG));
}
}
public void widgetDefaultSelected(SelectionEvent e) {
}