From b38a6c29c718108f68f623c230332a79cb323132 Mon Sep 17 00:00:00 2001 From: boccioli_m Date: Wed, 10 Jun 2015 15:24:52 +0200 Subject: [PATCH] Closedown --- plugins/TestingList.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/plugins/TestingList.java b/plugins/TestingList.java index 050db4c..c52e3bf 100644 --- a/plugins/TestingList.java +++ b/plugins/TestingList.java @@ -299,7 +299,7 @@ public class TestingList extends Panel { try { Runtime.getRuntime().exec(cmd); } catch (IOException ex) { - SwingUtils.showMessage(this, "", "jButtonOpenLogActionPerformed() "+ ex.toString() + " Please open the file manually (file dir: "+TESTS_LOG_DEFAULT_DIR); + SwingUtils.showMessage(this, "", "jButtonOpenLogActionPerformed() "+ ex.toString() + " \nPlease open the file manually (file dir: "+TESTS_LOG_DEFAULT_DIR); Logger.getLogger(TestingList.class.getName()).log(Level.SEVERE, null, ex); } } else { @@ -307,7 +307,7 @@ public class TestingList extends Panel { try { Desktop.getDesktop().edit(log); } catch (IOException ex) { - SwingUtils.showMessage(this, "", "jButtonOpenLogActionPerformed() "+ ex.toString() + " Please open the file manually (file dir: "+TESTS_LOG_DEFAULT_DIR); + SwingUtils.showMessage(this, "", "jButtonOpenLogActionPerformed() "+ ex.toString() + " \nPlease open the file manually (file dir: "+TESTS_LOG_DEFAULT_DIR); Logger.getLogger(TestingList.class.getName()).log(Level.SEVERE, null, ex); } }