ugly code, made only slightly less ugly by not swallowing the exception

This commit is contained in:
mindthegab
2014-12-22 12:05:50 -05:00
parent 2d8a6cfcb6
commit 6af15e115c

View File

@@ -8,7 +8,7 @@ public class RemoteRunnerWrapper implements Runnable {
try {
RemoteServer.main(new String []{});
} catch (Exception e) {
System.out.println("Could not start JUnit remoteServer");
System.out.println("Could not start JUnit remoteServer because of: " + e.getMessage());
}
}