prepend "DH-" to all threads using ThreadUtil

This commit is contained in:
James Seibel
2023-03-04 20:09:04 -06:00
parent 32456c3110
commit 067730379f
@@ -18,7 +18,7 @@ public class ThreadUtil
public static ExecutorService makeThreadPool(int poolSize, String name, int relativePriority)
{
return Executors.newFixedThreadPool(poolSize, new LodThreadFactory(name, Thread.NORM_PRIORITY+relativePriority));
return Executors.newFixedThreadPool(poolSize, new LodThreadFactory("DH-" + name, Thread.NORM_PRIORITY+relativePriority));
}
public static ExecutorService makeThreadPool(int poolSize, Class<?> clazz, int relativePriority)