Add format-style Log.debug method
This commit is contained in:
@@ -27,6 +27,10 @@ public class Log {
|
||||
logger.debug(msg, t);
|
||||
}
|
||||
|
||||
public static void debug(String format, Object... args) {
|
||||
logger.info(format, args);
|
||||
}
|
||||
|
||||
public static void info(String msg) {
|
||||
logger.info(msg);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user