ru.astrainteractive.astralibs.logging.BukkitLogger.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of core-bukkit Show documentation
Show all versions of core-bukkit Show documentation
Core utilities for spigot development
The newest version!
package ru.astrainteractive.astralibs.logging
import org.bukkit.Bukkit
class BukkitLogger(
override val TAG: String
) : Logger by JUtiltLogger(
TAG = TAG,
logger = Bukkit.getLogger()
)