mirror of
https://github.com/overleaf/overleaf.git
synced 2024-11-07 20:31:06 -05:00
Merge pull request #6969 from overleaf/msm-fix-log-debug
[git-bridge] Fix `Log.debug()` sending `INFO` logs GitOrigin-RevId: ef87b35ee3c6fa7659671a0a65545fa34f04dcd4
This commit is contained in:
parent
b1b9b9132a
commit
d23874f04c
1 changed files with 1 additions and 1 deletions
|
@ -28,7 +28,7 @@ public class Log {
|
||||||
}
|
}
|
||||||
|
|
||||||
public static void debug(String format, Object... args) {
|
public static void debug(String format, Object... args) {
|
||||||
logger.info(format, args);
|
logger.debug(format, args);
|
||||||
}
|
}
|
||||||
|
|
||||||
public static void info(String msg) {
|
public static void info(String msg) {
|
||||||
|
|
Loading…
Reference in a new issue