diff --git a/plugins/TestingList.java b/plugins/TestingList.java index 8b25247..b943a76 100644 --- a/plugins/TestingList.java +++ b/plugins/TestingList.java @@ -349,17 +349,17 @@ public class TestingList extends Panel { try { state = eval("state"); } catch (ApplicationStateException ex) { - Logger.getLogger(TestingList.class.getName()).log(Level.SEVERE, null, ex); + SwingUtils.showMessage(this, "jButtonRunActionPerformed()", ex.toString()); } catch (ScriptException ex) { - Logger.getLogger(TestingList.class.getName()).log(Level.SEVERE, null, ex); + SwingUtils.showMessage(this, "jButtonRunActionPerformed()", ex.toString()); } catch (IOException ex) { - Logger.getLogger(TestingList.class.getName()).log(Level.SEVERE, null, ex); + SwingUtils.showMessage(this, "jButtonRunActionPerformed()", ex.toString()); } catch (Controller.ControllerStateException ex) { - Logger.getLogger(TestingList.class.getName()).log(Level.SEVERE, null, ex); + SwingUtils.showMessage(this, "jButtonRunActionPerformed()", ex.toString()); } catch (InterruptedException ex) { - Logger.getLogger(TestingList.class.getName()).log(Level.SEVERE, null, ex); + SwingUtils.showMessage(this, "jButtonRunActionPerformed()", ex.toString()); } catch (TaskRunningException ex) { - Logger.getLogger(TestingList.class.getName()).log(Level.SEVERE, null, ex); + SwingUtils.showMessage(this, "jButtonRunActionPerformed()", ex.toString()); } if(state.toString().equals("Ready")){ setButtonToStart();