blob: 90c9dbdf791ca08f527e1461138bd31b3d91f3fb (
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 miscutil.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);
}
}
|