Clean redundancy codes.

This commit is contained in:
huanghongxun
2015-10-26 13:02:06 +08:00
parent b9c03d6ec3
commit b65be375e7
16 changed files with 183 additions and 320 deletions

View File

@@ -34,10 +34,18 @@ public class HMCLog {
logger.warn(message);
}
public static void debug(String message) {
logger.debug(message);
}
public static void warn(String msg, Throwable t) {
logger.warn(msg, t);
}
public static void debug(String msg, Throwable t) {
logger.debug(msg, t);
}
public static void err(String msg) {
logger.error(msg);
}