logOutputTextArea.setBorder(BorderFactory.createLineBorder(Color.black));
// Note: don't use the "add" method to add a component on the scroll panel to prevent textarea problems
logOutputScrollPanel = new JScrollPane(logOutputTextArea,JScrollPane.VERTICAL_SCROLLBAR_AS_NEEDED,JScrollPane.HORIZONTAL_SCROLLBAR_AS_NEEDED);
busyLabelPanel = new BusyLabelPanel();
busyLabelPanel.getJxBusyLabel().setBusy(false);
cleanDatabaseButton = new JButton("Clean Database");
cleanDatabaseButton.addActionListener(this);