Log levels for liquibase-core

My team has had no luck finding a way to set the logging level for the liquibase-core (4.24.0) library for Java. We are using it to stand up and tear down fixtures for our integration test suites but, as we do this before and after each test, our logs from these classes are now 99.9% liquibase INFO warnings that have no value for us.

Can we change the logging level for everything coming out of this dependency? I would hope there is a way to configure this via the Java Liquibase API as I’ve read that liquibase-core 4.. uses Java’s native logging utils instead of SLF4J as it used to?

There are 2 parameter to adjust the Liquibase logging level:

log-level: log-level

sql-log-level: sql-log-level

Those are fine when using the CLI or mvn but do not have a clear analogue that I can find in the Java API. How would we use those from the context of a Java class?

        final Database database = DatabaseFactory.getInstance().findCorrectDatabaseImplementation(new JdbcConnection(connection));
        final Path projectRoot = Paths.get(".").normalize().toAbsolutePath();
        final Map<String, Object> config = Map.of(
                Scope.Attr.database.name(), database,
                Scope.Attr.resourceAccessor.name(), new DirectoryResourceAccessor(projectRoot)
        );
        Scope.child(config, () -> {
            final CommandScope updateCommand = new CommandScope(UpdateCommandStep.COMMAND_NAME);
            updateCommand.addArgumentValue(DbUrlConnectionCommandStep.DATABASE_ARG, database);
            updateCommand.addArgumentValue(UpdateCommandStep.CHANGELOG_FILE_ARG, changelogFile);
            updateCommand.execute();
        });