/src/main/java/de/xzise/XLogger.java
https://gitlab.com/N3X15/Bukkit-Plugin-Utilities · Java · 86 lines · 50 code · 19 blank · 17 comment · 0 complexity · dab5a9a3c06c3e9b781f86e62ca2cbf8 MD5 · raw file
- /*
- * This file is part of Bukkit Plugin Utilities.
- *
- * Bukkit Plugin Utilities is free software: you can redistribute it and/or
- * modify it under the terms of the GNU Lesser General Public License as
- * published by the Free Software Foundation, either version 3 of the License,
- * or (at your option) any later version.
- *
- * Bukkit Plugin Utilities is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- * GNU Lesser General Public License for more details.
- *
- * You should have received a copy of the GNU Lesser General Public License
- * along with Bukkit Plugin Utilities.
- * If not, see <http://www.gnu.org/licenses/>.
- */
- package de.xzise;
- import java.util.logging.Level;
- import java.util.logging.Logger;
- import org.bukkit.plugin.Plugin;
- public class XLogger {
- private final Logger logger;
- private final String pluginName;
- private final String version;
- public XLogger(String loggerName, String pluginName) {
- this(Logger.getLogger(loggerName), pluginName, "");
- }
- public XLogger(String pluginName) {
- this("Minecraft", pluginName);
- }
-
- private XLogger(Logger logger, String pluginName, String version) {
- this.logger = logger;
- this.pluginName = pluginName;
- this.version = version;
- }
- public XLogger(Plugin plugin) {
- this(plugin.getServer().getLogger(), plugin.getDescription().getName(), plugin.getDescription().getVersion());
- }
- private String formatMessage(String message) {
- return "[" + pluginName + "]: " + message;
- }
- public void info(String msg) {
- this.logger.info(this.formatMessage(msg));
- }
- public void warning(String msg) {
- this.logger.warning(this.formatMessage(msg));
- }
- public void severe(String msg) {
- this.logger.severe(this.formatMessage(msg));
- }
- public void severe(String msg, Throwable exception) {
- this.log(Level.SEVERE, msg, exception);
- }
- public void log(Level level, String msg, Throwable exception) {
- this.logger.log(level, this.formatMessage(msg), exception);
- }
- public void warning(String msg, Throwable exception) {
- this.log(Level.WARNING, msg, exception);
- }
-
- public void enableMsg() {
- this.info(this.pluginName + (MinecraftUtil.isSet(this.version) ? " " : "") + this.version + " enabled");
- }
-
- public void disableMsg() {
- this.info(this.pluginName + (MinecraftUtil.isSet(this.version) ? " " : "") + this.version + " disabled");
- }
- }