ScopedLogger: change to debug level

This commit is contained in:
Florian RICHER 2025-05-25 16:28:24 +02:00
parent f8703fb47c
commit 56131569c1
Signed by: florian.richer
GPG key ID: C73D37CBED7BFC77

View file

@ -15,7 +15,7 @@ public class ScopedLogger {
}
public static void log(final String message, final Object... arguments) {
Logger.info(String.format("%s%s", getIndentation(), message), arguments);
Logger.debug(String.format("%s%s", getIndentation(), message), arguments);
}
public static void popScope() {