Tidy up subthread catch message

This commit is contained in:
Derry Hamilton 2019-05-13 12:59:17 +01:00
parent 87e2a81b62
commit f945a48c28

View file

@ -187,7 +187,7 @@ public class Job extends Thread {
Thread.UncaughtExceptionHandler h = new Thread.UncaughtExceptionHandler() {
public void uncaughtException(Thread th, Throwable ex) {
threadsExit.set(true);
log.error("Uncaught exception: " + ex);
log.error("Job exiting: Caught exception from subthread: " + ex);
System.exit(1);
}
};