Disable logging mixin for now

This commit is contained in:
c0de 2023-03-20 18:38:49 -05:00
parent 2d12caf392
commit 79c81d7772
1 changed files with 2 additions and 1 deletions

View File

@ -1,6 +1,7 @@
package dev.c0de.minecraft.mixin;
import dev.c0de.minecraft.c0deFoxMod;
import net.minecraft.client.gui.screen.TitleScreen;
import org.spongepowered.asm.mixin.Mixin;
import org.spongepowered.asm.mixin.injection.At;
@ -11,7 +12,7 @@ import org.spongepowered.asm.mixin.injection.callback.CallbackInfo;
public class c0deFoxMixin {
@Inject(at = @At("HEAD"), method = "init()V")
private void init(CallbackInfo info) {
c0deFoxMod.LOGGER.info("This line is printed by an example mod mixin!");
// c0deFoxMod.LOGGER.info("This line is printed by an example mod mixin!");
}
}