Use LogUtils.getLogger()

This commit is contained in:
RacoonDog 2022-07-31 18:12:20 -04:00 committed by seasnail8169
parent 2df79d8cf7
commit 0e952f34f2

View File

@ -3,6 +3,7 @@ package com.example.addon;
import com.example.addon.commands.CommandExample;
import com.example.addon.hud.HudExample;
import com.example.addon.modules.ModuleExample;
import com.mojang.logging.LogUtils;
import meteordevelopment.meteorclient.addons.MeteorAddon;
import meteordevelopment.meteorclient.systems.commands.Commands;
import meteordevelopment.meteorclient.systems.hud.Hud;
@ -10,10 +11,9 @@ import meteordevelopment.meteorclient.systems.hud.HudGroup;
import meteordevelopment.meteorclient.systems.modules.Category;
import meteordevelopment.meteorclient.systems.modules.Modules;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
public class Addon extends MeteorAddon {
public static final Logger LOG = LoggerFactory.getLogger(Addon.class);
public static final Logger LOG = LogUtils.getLogger();
public static final Category CATEGORY = new Category("Example");
public static final HudGroup HUD_GROUP = new HudGroup("Example");