Filter-log-messages - substitution

Hello,
I wonder if there is a substitution for deprecated filter-log-messages attribute?

Does anyone know anything similar to this attribute?

Thanks,
Kamil

Hi @Kamil,

What are you trying to filter? Depending on what you are trying to filter maybe the below configuration (you can find in LiquibaseCommandLineConfiguration class) can help you:

 LOG_CHANNELS = builder.define("logChannels", String.class)
                .setDefaultValue("liquibase", "Controls which log channels have their level set by the liquibase.logLevel setting. Comma separate multiple values. To set the level of all channels, use 'all'. Example: liquibase,org.mariadb.jdbc")
                .build();

If this is not what you are looking for, please some more details if possible.

Thanks,
Daniel.