/**
* Custom initialization
*/
private void initCustom() {
logSettings = ApplicationSettings.getInstance().getLogSettings();
jTextField1.setInputVerifier(new LogRecordBufferVerifyer());
jTextField1.setText(Integer.toString(logSettings.getFlushLimit()));
DefaultComboBoxModel logLevels = new DefaultComboBoxModel(logSettings.getLogLevels());
logLevels.setSelectedItem(ApplicationSettings.getInstance().getLogSettings().getLogLevels()[ApplicationSettings.getInstance().getLogSettings().getSelectedIndex()]);
jComboBox1.setModel(logLevels);
}