Reduce log level of mixin.perf.spam_thread_dump to info

Closes #647
This commit is contained in:
Mustafa 2026-04-22 12:40:07 +03:00 committed by embeddedt
parent c2f585da95
commit 4d2f0da1fc
No known key found for this signature in database
GPG Key ID: A69433EC199B5613

View File

@ -78,8 +78,8 @@ public class ModernFixMixinPlugin implements IMixinConfigPlugin {
while(true) { while(true) {
try { try {
Thread.sleep(60000); Thread.sleep(60000);
logger.error("------ DEBUG THREAD DUMP (occurs every 60 seconds) ------"); logger.info("------ DEBUG THREAD DUMP (occurs every 60 seconds) ------");
logger.error(ThreadDumper.obtainThreadDump()); logger.info(ThreadDumper.obtainThreadDump());
} catch(InterruptedException | RuntimeException e) {} } catch(InterruptedException | RuntimeException e) {}
} }
} }
@ -300,4 +300,4 @@ public class ModernFixMixinPlugin implements IMixinConfigPlugin {
} }
}); });
} }
} }