diff options
author | Draknyte1 <Draknyte1@hotmail.com> | 2016-02-27 21:52:02 +1000 |
---|---|---|
committer | Draknyte1 <Draknyte1@hotmail.com> | 2016-02-27 21:52:02 +1000 |
commit | 47ff638d276f5f926640b224e443bdccfd7b8506 (patch) | |
tree | 2b39067caab27d5bf93e6b8bbb84e6e3eb342d98 /src/Java/miscutil/core/util | |
parent | 7711c80664fdfa703b5e60e62af437655da783ae (diff) | |
download | GT5-Unofficial-47ff638d276f5f926640b224e443bdccfd7b8506.tar.gz GT5-Unofficial-47ff638d276f5f926640b224e443bdccfd7b8506.tar.bz2 GT5-Unofficial-47ff638d276f5f926640b224e443bdccfd7b8506.zip |
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. :(
Diffstat (limited to 'src/Java/miscutil/core/util')
-rw-r--r-- | src/Java/miscutil/core/util/Log.java | 29 |
1 files changed, 29 insertions, 0 deletions
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); + } +} |