Closedown

This commit is contained in:
boccioli_m
2015-06-10 15:24:52 +02:00
parent 3dce926b53
commit b38a6c29c7

View File

@@ -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);
}
}