Redgate Summit – The Database DevOps Transformation Watch now
PASS Data Community Summit logo

PASS Data Community Summit

A hybrid conference in Seattle and online

15-18 November

Flyway Documentation

This documentation is deprecated. The new documentation can now be found on documentation.red-gate.com

Poll

Loggers

Description

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.

Valid Options

  • auto - Auto detect the logger (default behavior)
  • console - Use stdout/stderr (only available when using CLI)
  • slf4j2 - Use the slf4j2 logger
  • log4j2 - Use the log4j2 logger
  • apache-commons - Use the Apache Commons logger

Alternatively you can provide the fully qualified class name for any other logger to use that.

Default

auto

Notes

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.

Usage

Commandline

./flyway -loggers=auto

Configuration File

flyway.loggers=auto

Environment Variable

FLYWAY_LOGGERS=auto

API

Flyway.configure()
    .loggers("auto")
    .load()

Gradle

flyway {
    loggers = 'auto'
}

Maven

<configuration>
    <loggers>auto</loggers>
</configuration>