The loggers
configuration parameter allows you to override Flyway’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)console
- Use stdout/stderr (only available when using CLI)slf4j2
- Use the slf4j2 loggerlog4j2
- Use the log4j2 loggerapache-commons
- Use the Apache Commons loggerAlternatively you can provide the fully qualified class name for any other logger to use that.
auto
If you are using Flyway within Java and have multiple instances of the Flyway object with different configurations, you must ensure they all have the same loggers configured. Other scenarios are unsupported.
./flyway -loggers=auto
flyway.loggers=auto
FLYWAY_LOGGERS=auto
Flyway.configure()
.loggers("auto")
.load()
flyway {
loggers = 'auto'
}
<configuration>
<loggers>auto</loggers>
</configuration>