blob: fe06fcb271c9328e28c7b5e62bd3cee6fe5f5433 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
package gtPlusPlus.core.util;
import org.apache.logging.log4j.LogManager;
import org.apache.logging.log4j.Logger;
public final class Log {
public static final Logger LOGGER = LogManager.getLogger("MiscUtils");
public static void warn(final String msg) {
LOGGER.warn(msg);
}
public static void error(final String msg) {
LOGGER.error(msg);
}
public static void info(final String msg) {
LOGGER.info(msg);
}
public static void debug(final String msg) {
LOGGER.debug(msg);
}
}
|