track threads being used

This commit is contained in:
2025-02-07 12:16:52 -06:00
parent 29aea83217
commit 54a279c3e6
+2 -1
View File
@@ -69,6 +69,7 @@ public class JobThread implements Runnable {
int availableThreads = Runtime.getRuntime().availableProcessors();
// Print the count
Logger.info("Total threads in application: " + threads.length + " / " + availableThreads);
if(threads.length > 30)
Logger.info("Total threads in application: " + threads.length + " / " + availableThreads);
}
}