Remove log message

This commit is contained in:
embeddedt 2023-02-11 09:32:11 -05:00
parent 928d2e3f02
commit ebafc9a0cc
No known key found for this signature in database
GPG Key ID: A69433EC199B5613

View File

@ -17,7 +17,6 @@ public class UtilMixin {
return pool -> {
ForkJoinWorkerThread thread = factory.newThread(pool);
int pri = ModernFixConfig.BACKGROUND_WORKER_PRIORITY.get();
ModernFix.LOGGER.info("Changing priority of " + thread.getName() + " to " + pri);
thread.setPriority(pri);
return thread;
};