diff --git a/currency-money/src/main/java/dev/xhyrom/lighteco/currency/money/bukkit/BukkitMCLoader.java b/currency-money/src/main/java/dev/xhyrom/lighteco/currency/money/bukkit/BukkitMCLoader.java index e7256cc..7cc2158 100644 --- a/currency-money/src/main/java/dev/xhyrom/lighteco/currency/money/bukkit/BukkitMCLoader.java +++ b/currency-money/src/main/java/dev/xhyrom/lighteco/currency/money/bukkit/BukkitMCLoader.java @@ -7,8 +7,6 @@ import dev.xhyrom.lighteco.api.manager.CurrencyManager; import dev.xhyrom.lighteco.api.model.currency.Currency; import dev.xhyrom.lighteco.currency.money.bukkit.hooks.vault.VaultFactory; import dev.xhyrom.lighteco.currency.money.common.MoneyCurrency; -import org.bukkit.Bukkit; -import org.bukkit.entity.Player; import org.bukkit.plugin.java.JavaPlugin; import java.util.UUID; @@ -28,7 +26,7 @@ public class BukkitMCLoader extends JavaPlugin { commandManager.registerCurrencyCommand(currency, true); if (getServer().getPluginManager().getPlugin("Vault") != null) { - getLogger().info("Vault found, hooking..."); + getSLF4JLogger().info("Vault found, hooking..."); this.vaultFactory = new VaultFactory(this); this.vaultFactory.hook();