/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

  1. /*
  2. * This file is part of Bukkit Plugin Utilities.
  3. *
  4. * Bukkit Plugin Utilities is free software: you can redistribute it and/or
  5. * modify it under the terms of the GNU Lesser General Public License as
  6. * published by the Free Software Foundation, either version 3 of the License,
  7. * or (at your option) any later version.
  8. *
  9. * Bukkit Plugin Utilities is distributed in the hope that it will be useful,
  10. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  11. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  12. * GNU Lesser General Public License for more details.
  13. *
  14. * You should have received a copy of the GNU Lesser General Public License
  15. * along with Bukkit Plugin Utilities.
  16. * If not, see <http://www.gnu.org/licenses/>.
  17. */
  18. package de.xzise;
  19. import java.util.logging.Level;
  20. import java.util.logging.Logger;
  21. import org.bukkit.plugin.Plugin;
  22. public class XLogger {
  23. private final Logger logger;
  24. private final String pluginName;
  25. private final String version;
  26. public XLogger(String loggerName, String pluginName) {
  27. this(Logger.getLogger(loggerName), pluginName, "");
  28. }
  29. public XLogger(String pluginName) {
  30. this("Minecraft", pluginName);
  31. }
  32. private XLogger(Logger logger, String pluginName, String version) {
  33. this.logger = logger;
  34. this.pluginName = pluginName;
  35. this.version = version;
  36. }
  37. public XLogger(Plugin plugin) {
  38. this(plugin.getServer().getLogger(), plugin.getDescription().getName(), plugin.getDescription().getVersion());
  39. }
  40. private String formatMessage(String message) {
  41. return "[" + pluginName + "]: " + message;
  42. }
  43. public void info(String msg) {
  44. this.logger.info(this.formatMessage(msg));
  45. }
  46. public void warning(String msg) {
  47. this.logger.warning(this.formatMessage(msg));
  48. }
  49. public void severe(String msg) {
  50. this.logger.severe(this.formatMessage(msg));
  51. }
  52. public void severe(String msg, Throwable exception) {
  53. this.log(Level.SEVERE, msg, exception);
  54. }
  55. public void log(Level level, String msg, Throwable exception) {
  56. this.logger.log(level, this.formatMessage(msg), exception);
  57. }
  58. public void warning(String msg, Throwable exception) {
  59. this.log(Level.WARNING, msg, exception);
  60. }
  61. public void enableMsg() {
  62. this.info(this.pluginName + (MinecraftUtil.isSet(this.version) ? " " : "") + this.version + " enabled");
  63. }
  64. public void disableMsg() {
  65. this.info(this.pluginName + (MinecraftUtil.isSet(this.version) ? " " : "") + this.version + " disabled");
  66. }
  67. }