blob: ea7076e45395e453928d2842592751e5ddbd2776 (
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
25
26
27
28
29
|
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(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);
}
}
|