Add format-style Log.debug method

This commit is contained in:
Simon Detheridge 2021-07-08 12:14:29 +01:00
parent 12b8c0a1c0
commit a3c4f8c4e6

View file

@ -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);
}