mirror of
https://github.com/overleaf/overleaf.git
synced 2024-11-21 20:47:08 -05:00
Add format-style Log.debug method
This commit is contained in:
parent
12b8c0a1c0
commit
a3c4f8c4e6
1 changed files with 4 additions and 0 deletions
|
@ -27,6 +27,10 @@ public class Log {
|
||||||
logger.debug(msg, t);
|
logger.debug(msg, t);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public static void debug(String format, Object... args) {
|
||||||
|
logger.info(format, args);
|
||||||
|
}
|
||||||
|
|
||||||
public static void info(String msg) {
|
public static void info(String msg) {
|
||||||
logger.info(msg);
|
logger.info(msg);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue