From 067730379f444f34d3f5c579b920df24c1bcef44 Mon Sep 17 00:00:00 2001 From: James Seibel Date: Sat, 4 Mar 2023 20:09:04 -0600 Subject: [PATCH] prepend "DH-" to all threads using ThreadUtil --- core/src/main/java/com/seibel/lod/core/util/ThreadUtil.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/src/main/java/com/seibel/lod/core/util/ThreadUtil.java b/core/src/main/java/com/seibel/lod/core/util/ThreadUtil.java index 10243c4f1..790a44936 100644 --- a/core/src/main/java/com/seibel/lod/core/util/ThreadUtil.java +++ b/core/src/main/java/com/seibel/lod/core/util/ThreadUtil.java @@ -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)