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");
|
private final boolean hasOF = hasClass("optifine.OptiFineForgeTweaker") || hasClass("me.modmuss50.optifabric.mod.Optifabric");
|
||||||
|
|
||||||
{
|
{
|
||||||
logger.error("hasOF: " + hasOF);
|
logger.debug("hasOF: " + hasOF);
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
|
|||||||
@@ -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;
|
||||||
|
|||||||
Reference in New Issue
Block a user