From 47ff638d276f5f926640b224e443bdccfd7b8506 Mon Sep 17 00:00:00 2001 From: Draknyte1 Date: Sat, 27 Feb 2016 21:52:02 +1000 Subject: Pushing more things to Git which weren't there. ToroiseGit doesn't auto add new files to be pushed/committed unless you manually add them to a commit. :( --- src/Java/miscutil/core/util/Log.java | 29 +++++++++++++++++++++++++++++ 1 file changed, 29 insertions(+) create mode 100644 src/Java/miscutil/core/util/Log.java (limited to 'src/Java/miscutil/core/util') diff --git a/src/Java/miscutil/core/util/Log.java b/src/Java/miscutil/core/util/Log.java new file mode 100644 index 0000000000..ea69618ec7 --- /dev/null +++ b/src/Java/miscutil/core/util/Log.java @@ -0,0 +1,29 @@ +package crazypants.enderio; + +import org.apache.logging.log4j.LogManager; +import org.apache.logging.log4j.Logger; + +public final class Log +{ + public static final Logger LOGGER = LogManager.getLogger("EnderIO"); + + public static void warn(String msg) + { + LOGGER.warn(msg); + } + + public static void error(String msg) + { + LOGGER.error(msg); + } + + public static void info(String msg) + { + LOGGER.info(msg); + } + + public static void debug(String msg) + { + LOGGER.debug(msg); + } +} -- cgit