The loggers configuration parameter allows you to override MigrateDB’s logging auto-detection and specify an exact
logger, or comma-separated list of loggers, you wish to use.
This can be useful when a dependency comes with a logger you do not wish to use.
auto - Auto detect the logger (default behavior)slf4j2 - Use the slf4j2 loggerapache-commons - Use the Apache Commons loggerAlternatively you can provide the fully qualified class name for any other logger to use that.
auto
MigrateDb.configure()
.loggers("auto")
.load()