Reduce mixin plugin log message verbosity to debug level
This commit is contained in:
@@ -31,7 +31,7 @@ public class ReplayModMixinConfigPlugin implements IMixinConfigPlugin {
|
||||
private final boolean hasOF = hasClass("optifine.OptiFineForgeTweaker") || hasClass("me.modmuss50.optifabric.mod.Optifabric");
|
||||
|
||||
{
|
||||
logger.error("hasOF: " + hasOF);
|
||||
logger.debug("hasOF: " + hasOF);
|
||||
}
|
||||
|
||||
@Override
|
||||
|
||||
@@ -38,9 +38,9 @@ public class ReplayModNonMMLauncher implements IMixinConfigPlugin {
|
||||
public List<String> getMixins() {
|
||||
try {
|
||||
if (ReplayModMixinConfigPlugin.hasClass("com.chocohead.mm.Plugin")) {
|
||||
logger.info("Detected MM, they should call us...");
|
||||
logger.debug("Detected MM, they should call us...");
|
||||
} else {
|
||||
logger.info("Did not detect MM, initializing ourselves...");
|
||||
logger.debug("Did not detect MM, initializing ourselves...");
|
||||
new ReplayModMMLauncher().run();
|
||||
}
|
||||
return null;
|
||||
|
||||
Reference in New Issue
Block a user