[git-bridge] Fix `Log.debug()` sending `INFO` logs GitOrigin-RevId: ef87b35ee3c6fa7659671a0a65545fa34f04dcd4
@@ -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) {