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:
Miguel Serrano 2022-03-07 10:32:24 +01:00 committed by Copybot
parent b1b9b9132a
commit d23874f04c

View file

@ -28,7 +28,7 @@ public class Log {
}
public static void debug(String format, Object... args) {
logger.info(format, args);
logger.debug(format, args);
}
public static void info(String msg) {