Reduce mixin plugin log message verbosity to debug level

This commit is contained in:
Jonas Herzig
2020-04-08 12:59:59 +02:00
parent 1d7a49907c
commit 97f901408e
2 changed files with 3 additions and 3 deletions

View File

@@ -31,7 +31,7 @@ public class ReplayModMixinConfigPlugin implements IMixinConfigPlugin {
private final boolean hasOF = hasClass("optifine.OptiFineForgeTweaker") || hasClass("me.modmuss50.optifabric.mod.Optifabric"); private final boolean hasOF = hasClass("optifine.OptiFineForgeTweaker") || hasClass("me.modmuss50.optifabric.mod.Optifabric");
{ {
logger.error("hasOF: " + hasOF); logger.debug("hasOF: " + hasOF);
} }
@Override @Override

View File

@@ -38,9 +38,9 @@ public class ReplayModNonMMLauncher implements IMixinConfigPlugin {
public List<String> getMixins() { public List<String> getMixins() {
try { try {
if (ReplayModMixinConfigPlugin.hasClass("com.chocohead.mm.Plugin")) { if (ReplayModMixinConfigPlugin.hasClass("com.chocohead.mm.Plugin")) {
logger.info("Detected MM, they should call us..."); logger.debug("Detected MM, they should call us...");
} else { } else {
logger.info("Did not detect MM, initializing ourselves..."); logger.debug("Did not detect MM, initializing ourselves...");
new ReplayModMMLauncher().run(); new ReplayModMMLauncher().run();
} }
return null; return null;